Home
last modified time | relevance | path

Searched refs:oprand1 (Results 1 – 10 of 10) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
DExpr.java43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) { in make() argument
44 return new Expr(op, oprand1, new ASTList(oprand2)); in make()
47 public static Expr make(int op, ASTree oprand1) { in make() argument
48 return new Expr(op, oprand1); in make()
55 public ASTree oprand1() { return getLeft(); } in oprand1() method in Expr
DAssignExpr.java32 public static AssignExpr makeAssign(int op, ASTree oprand1, in makeAssign() argument
34 return new AssignExpr(op, oprand1, new ASTList(oprand2)); in makeAssign()
DBinExpr.java36 public static BinExpr makeBin(int op, ASTree oprand1, ASTree oprand2) { in makeBin() argument
37 return new BinExpr(op, oprand1, new ASTList(oprand2)); in makeBin()
DStmnt.java41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) { in make() argument
42 return new Stmnt(op, oprand1, new ASTList(oprand2)); in make()
/external/javassist/src/main/javassist/compiler/
DTypeChecker.java214 ASTree left = expr.oprand1(); in atAssignExpr()
257 atArrayRead(array.oprand1(), array.oprand2()); in atArrayAssign()
324 ASTree left = expr.oprand1(); in atBinExpr()
345 ASTree left = expr.oprand1(); in atPlusExpr()
514 bexpr.oprand1().accept(this); in booleanExpr()
522 ((Expr)expr).oprand1().accept(this); in booleanExpr()
525 bexpr.oprand1().accept(this); in booleanExpr()
539 expr.setLeft(new CastExpr(type2, 0, expr.oprand1())); in insertCast()
563 ASTree oprand = expr.oprand1(); in atExpr()
628 ASTree method = expr.oprand1(); in atCallExpr()
[all …]
DCodeGen.java334 atPlusPlus(e.getOperator(), e.oprand1(), e, false); in atStmnt()
743 ASTree left = expr.oprand1(); in atAssignExpr()
824 arrayAccess(array.oprand1(), array.oprand2()); in atArrayAssign()
963 expr.oprand1().accept(this); in atBinExpr()
1107 booleanExpr(!branchIf, ((Expr)expr).oprand1()); in booleanExpr()
1110 booleanExpr(!isAndAnd, bexpr.oprand1()); in booleanExpr()
1166 expr.oprand1().accept(this); in compileOprands()
1450 ASTree oprand = expr.oprand1(); in atExpr()
1480 expr.oprand1().accept(this); in atExpr()
1533 ASTree op1 = expr.oprand1(); in atClassObject()
[all …]
DMemberCodeGen.java451 ASTree method = expr.oprand1(); in atCallExpr()
486 = resolver.lookupClass(((Symbol)e.oprand1()).get(), false); in atCallExpr()
490 ASTree target = e.oprand1(); in atCallExpr()
1040 CtField f = resolver.lookupField(((Symbol)e.oprand1()).get(), in fieldAccess()
1048 e.oprand1().accept(this); in fieldAccess()
1070 if (nfe.getExpr() != e.oprand1()) in fieldAccess()
DJvstCodeGen.java230 ASTree method = expr.oprand1(); in atCallExpr()
283 makeCflowName(sbuf, expr.oprand1()); in makeCflowName()
DJvstTypeChecker.java141 ASTree method = expr.oprand1(); in atCallExpr()
DParser.java1198 toClassName(expr.oprand1(), sbuf); in toClassName()