HomeSort by relevance Sort by last modified time
    Searched defs:oprand (Results 1 - 2 of 2) sorted by null

  /external/javassist/src/main/javassist/compiler/
TypeChecker.java 563 ASTree oprand = expr.oprand1(); local
581 atArrayRead(oprand, expr.oprand2());
583 atPlusPlus(token, oprand, expr);
589 oprand.accept(this);
590 if (!isConstant(expr, token, oprand))
597 private boolean isConstant(Expr expr, int op, ASTree oprand) {
598 oprand = stripPlusExpr(oprand);
599 if (oprand instanceof IntConst) {
600 IntConst c = (IntConst)oprand;
    [all...]
CodeGen.java 994 * If an oprand type is not a numeric type, this method
1386 ASTree oprand = expr.getOprand(); local
1450 ASTree oprand = expr.oprand1(); local
    [all...]

Completed in 39 milliseconds