Examples of callMethodRef()


Examples of com.caucho.quercus.env.QuercusClass.callMethodRef()

    // qa/0954 - what appears to be a static call may be a call to a super constructor
    Value thisValue = env.getThis();
    StringValue methodName = _nameExpr.evalStringValue(env);

    return cl.callMethodRef(env, thisValue, methodName, _args);
  }
 
  public String toString()
  {
    return _nameExpr + "()";
View Full Code Here

Examples of com.caucho.quercus.env.QuercusClass.callMethodRef()

    // qa/0954 - what appears to be a static call may be a call to a super constructor
    Value thisValue = env.getThis();
    StringValue methodName = _nameExpr.evalStringValue(env);

    return cl.callMethodRef(env, thisValue, methodName, _args);
  }
 
  public String toString()
  {
    return _nameExpr + "()";
View Full Code Here

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

    env.pushCall(this, obj, args);
   
    try {
      env.checkTimeout();

      return obj.callMethodRef(env, _hash, _name, _name.length, args);
    } finally {
      env.popCall();
    }
  }
 
View Full Code Here

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

    if (qThis.isNull())
      qThis = this;
   
    AbstractFunction fun = _methodMap.get(methodName, hash);

    return fun.callMethodRef(env, this, qThis, args);
 
 
  public final Value callMethodRef(Env env, Value qThis, StringValue methodName,
                                   Value []args)
  {
View Full Code Here

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

    if (qThis.isNull())
      qThis = this;
   
    AbstractFunction fun = _methodMap.get(methodName, hash);

    return fun.callMethodRef(env, this, qThis);
 
 
  public final Value callMethodRef(Env env, Value qThis, StringValue methodName)
  {
    return callMethodRef(env, qThis,
View Full Code Here

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

    if (qThis.isNull())
      qThis = this;
   
    AbstractFunction fun = _methodMap.get(methodName, hash);

    return fun.callMethodRef(env, this, qThis, a1);
 
 
  public final Value callMethodRef(Env env, Value qThis, StringValue methodName,
                                   Value a1)
  {
View Full Code Here

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

    if (qThis.isNull())
      qThis = this;
   
    AbstractFunction fun = _methodMap.get(methodName, hash);

    return fun.callMethodRef(env, this, qThis, a1, a2);
 
 
  public final Value callMethodRef(Env env, Value qThis, StringValue methodName,
                                   Value a1, Value a2)
  {
View Full Code Here

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

    if (qThis.isNull())
      qThis = this;
   
    AbstractFunction fun = _methodMap.get(methodName, hash);

    return fun.callMethodRef(env, this, qThis, a1, a2, a3);
 
 
  public final Value callMethodRef(Env env, Value qThis, StringValue methodName,
                                   Value a1, Value a2, Value a3)
  {
View Full Code Here

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

    if (qThis.isNull())
      qThis = this;
   
    AbstractFunction fun = _methodMap.get(methodName, hash);

    return fun.callMethodRef(env, this, qThis,
                             a1, a2, a3, a4);
 
 
  public final Value callMethodRef(Env env, Value qThis, StringValue methodName,
                                   Value a1, Value a2, Value a3, Value a4)
View Full Code Here

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

    if (qThis.isNull())
      qThis = this;
   
    AbstractFunction fun = _methodMap.get(methodName, hash);

    return fun.callMethodRef(env, this, qThis,
                             a1, a2, a3, a4, a5);
  }
 
  public final Value callMethodRef(Env env, Value qThis, StringValue methodName,
                                   Value a1, Value a2, Value a3, Value a4,
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.