Examples of callRef()


Examples of com.caucho.quercus.env.Value.callRef()

    try {
      env.checkTimeout();
     
      if (isRef)
        return value.callRef(env, args);
      else if (isCopy)
        return value.call(env, args).copyReturn();
      else
        return value.call(env, args).toValue();
    } finally {
View Full Code Here

Examples of com.caucho.quercus.env.Value.callRef()

    try {
      env.checkTimeout();
     
      if (isRef)
        return value.callRef(env, args);
      else if (isCopy)
        return value.call(env, args).copyReturn();
      else
        return value.call(env, args).toValue();
    } finally {
View Full Code Here

Examples of com.caucho.quercus.function.AbstractFunction.callRef()

    AbstractFunction fun = findFunction(name);

    if (fun == null)
      return error(L.l("'{0}' is an unknown function.", name));

    return fun.callRef(this);
  }

  /**
   * EvalRefuates the named function.
   *
 
View Full Code Here

Examples of com.caucho.quercus.function.AbstractFunction.callRef()

    AbstractFunction fun = findFunction(name);

    if (fun == null)
      return error(L.l("'{0}' is an unknown function.", name));

    return fun.callRef(this, a0);
  }

  /**
   * EvalRefuates the named function.
   *
 
View Full Code Here

Examples of com.caucho.quercus.function.AbstractFunction.callRef()

    AbstractFunction fun = findFunction(name);

    if (fun == null)
      return error(L.l("'{0}' is an unknown function.", name));

    return fun.callRef(this, a0, a1);
  }

  /**
   * EvalRefuates the named function.
   *
 
View Full Code Here

Examples of com.caucho.quercus.function.AbstractFunction.callRef()

    AbstractFunction fun = findFunction(name);

    if (fun == null)
      return error(L.l("'{0}' is an unknown function.", name));

    return fun.callRef(this, a0, a1, a2);
  }

  /**
   * Evaluates the named function.
   *
 
View Full Code Here

Examples of com.caucho.quercus.function.AbstractFunction.callRef()

    AbstractFunction fun = findFunction(name);

    if (fun == null)
      return error(L.l("'{0}' is an unknown function.", name));

    return fun.callRef(this, a0, a1, a2, a3);
  }

  /**
   * Evaluates the named function.
   *
 
View Full Code Here

Examples of com.caucho.quercus.function.AbstractFunction.callRef()

    AbstractFunction fun = findFunction(name);

    if (fun == null)
      return error(L.l("'{0}' is an unknown function.", name));

    return fun.callRef(this, a0, a1, a2, a3, a4);
  }

  /**
   * Evaluates the named function.
   *
 
View Full Code Here

Examples of com.caucho.quercus.function.AbstractFunction.callRef()

    AbstractFunction fun = findFunction(name);

    if (fun == null)
      return error(L.l("'{0}' is an unknown function.", name));

    return fun.callRef(this, args);
  }

  /**
   * Adds a class, e.g. from an include.
   */
 
View Full Code Here

Examples of com.caucho.quercus.function.AbstractFunction.callRef()

    AbstractFunction fun = findFunction(name);

    if (fun == null)
      return error(L.l("'{0}' is an unknown function.", name));

    return fun.callRef(this);
  }

  /**
   * EvalRefuates the named function.
   *
 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.