Examples of charValueAt()


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

      Value v = args[_index];

      if (v.isLongConvertible())
        return String.valueOf((char) v.toLong());
      else
        return v.charValueAt(0).toString();
    }
  }

  static class SimpleStringReader {
    StringValue _str;
View Full Code Here

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

      Value v = args[_index];

      if (v.isLongConvertible())
        return String.valueOf((char) v.toLong());
      else
        return v.charValueAt(0).toString();
    }
  }

  static class SimpleStringReader {
    StringValue _str;
View Full Code Here

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

  @Override
  public Value eval(Env env)
  {
    Value obj = _objExpr.eval(env);

    return obj.charValueAt(_indexExpr.evalLong(env));
  }
 
  /**
   * Evaluates the expression.
   *
 
View Full Code Here

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

   */
  public Value eval(Env env)
  {
    Value obj = _objExpr.eval(env);

    return obj.charValueAt(_indexExpr.evalLong(env));
  }
 
  /**
   * Evaluates the expression as an assignment.
   *
 
View Full Code Here

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

      Value v = args[_index];

      if (v.isLongConvertible())
        return String.valueOf((char) v.toLong());
      else
        return v.charValueAt(0).toString();
    }
  }

  static class SimpleStringReader {
    StringValue _str;
View Full Code Here

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

  @Override
  public Value eval(Env env)
  {
    Value obj = _objExpr.eval(env);

    return obj.charValueAt(_indexExpr.evalLong(env));
  }
 
  /**
   * Evaluates the expression.
   *
 
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.