Searched refs:oprand2 (Results 1 – 10 of 10) sorted by relevance
/external/javassist/src/main/javassist/compiler/ |
D | TypeChecker.java | 215 ASTree right = expr.oprand2(); in atAssignExpr() 257 atArrayRead(array.oprand1(), array.oprand2()); in atArrayAssign() 325 ASTree right = expr.oprand2(); in atBinExpr() 346 ASTree right = expr.oprand2(); in atPlusExpr() 422 if (e.getOperator() == '+' && e.oprand2() == null) in stripPlusExpr() 429 ASTree cexpr = getConstantFieldValue((Member)e.oprand2()); in stripPlusExpr() 517 bexpr.oprand2().accept(this); in booleanExpr() 526 bexpr.oprand2().accept(this); in booleanExpr() 565 String member = ((Symbol)expr.oprand2()).get(); in atExpr() 574 String member = ((Symbol)expr.oprand2()).get(); in atExpr() [all …]
|
D | JvstTypeChecker.java | 147 (ASTList)expr.oprand2()); in atCallExpr() 151 atCflow((ASTList)expr.oprand2()); in atCallExpr()
|
D | MemberCodeGen.java | 452 ASTList args = (ASTList)expr.oprand2(); in atCallExpr() 482 mname = ((Symbol)e.oprand2()).get(); in atCallExpr() 1041 (Symbol)e.oprand2()); in fieldAccess() 1055 (Symbol)e.oprand2()); in fieldAccess() 1057 && ((Symbol)e.oprand2()).get().equals("length")) in fieldAccess() 1077 Symbol fname = (Symbol)e.oprand2(); in fieldAccess()
|
D | CodeGen.java | 744 ASTree right = expr.oprand2(); in atAssignExpr() 824 arrayAccess(array.oprand1(), array.oprand2()); in atArrayAssign() 964 ASTree right = expr.oprand2(); in atBinExpr() 1114 booleanExpr(isAndAnd, bexpr.oprand2()); in booleanExpr() 1169 expr.oprand2().accept(this); in compileOprands() 1452 String member = ((Symbol)expr.oprand2()).get(); in atExpr() 1466 atArrayRead(oprand, expr.oprand2()); in atExpr() 1690 oprand = expr.oprand2(); in atPlusPlus() 1775 arrayAccess(expr.oprand1(), expr.oprand2()); in atArrayPlusPlus()
|
D | JvstCodeGen.java | 234 procHandler.doit(this, bytecode, (ASTList)expr.oprand2()); in atCallExpr() 238 atCflow((ASTList)expr.oprand2()); in atCallExpr() 285 makeCflowName(sbuf, expr.oprand2()); in makeCflowName()
|
D | Parser.java | 1200 toClassName(expr.oprand2(), sbuf); in toClassName()
|
/external/javassist/src/main/javassist/compiler/ast/ |
D | Expr.java | 43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) { in make() argument 44 return new Expr(op, oprand1, new ASTList(oprand2)); in make() 61 public ASTree oprand2() { return getRight().getLeft(); } in oprand2() method in Expr
|
D | AssignExpr.java | 33 ASTree oprand2) { in makeAssign() argument 34 return new AssignExpr(op, oprand1, new ASTList(oprand2)); in makeAssign()
|
D | BinExpr.java | 36 public static BinExpr makeBin(int op, ASTree oprand1, ASTree oprand2) { in makeBin() argument 37 return new BinExpr(op, oprand1, new ASTList(oprand2)); in makeBin()
|
D | Stmnt.java | 41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) { in make() argument 42 return new Stmnt(op, oprand1, new ASTList(oprand2)); in make()
|