/external/javassist/src/main/javassist/compiler/ast/ |
Expr.java | 43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) { 44 return new Expr(op, oprand1, new ASTList(oprand2)); 61 public ASTree oprand2() { return getRight().getLeft(); } method in class:Expr
|
AssignExpr.java | 33 ASTree oprand2) { 34 return new AssignExpr(op, oprand1, new ASTList(oprand2));
|
BinExpr.java | 36 public static BinExpr makeBin(int op, ASTree oprand1, ASTree oprand2) { 37 return new BinExpr(op, oprand1, new ASTList(oprand2));
|
Stmnt.java | 41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) { 42 return new Stmnt(op, oprand1, new ASTList(oprand2));
|
/external/javassist/src/main/javassist/compiler/ |
TypeChecker.java | 215 ASTree right = expr.oprand2(); 257 atArrayRead(array.oprand1(), array.oprand2()); 325 ASTree right = expr.oprand2(); 346 ASTree right = expr.oprand2(); 422 if (e.getOperator() == '+' && e.oprand2() == null) 429 ASTree cexpr = getConstantFieldValue((Member)e.oprand2()); 517 bexpr.oprand2().accept(this); 526 bexpr.oprand2().accept(this); 565 String member = ((Symbol)expr.oprand2()).get(); 574 String member = ((Symbol)expr.oprand2()).get() [all...] |
JvstTypeChecker.java | 147 (ASTList)expr.oprand2()); 151 atCflow((ASTList)expr.oprand2());
|
MemberCodeGen.java | 452 ASTList args = (ASTList)expr.oprand2(); 482 mname = ((Symbol)e.oprand2()).get(); [all...] |
CodeGen.java | 744 ASTree right = expr.oprand2(); 824 arrayAccess(array.oprand1(), array.oprand2()); 964 ASTree right = expr.oprand2(); [all...] |
JvstCodeGen.java | 234 procHandler.doit(this, bytecode, (ASTList)expr.oprand2()); 238 atCflow((ASTList)expr.oprand2()); 285 makeCflowName(sbuf, expr.oprand2());
|
Parser.java | [all...] |