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

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

Completed in 85 milliseconds