Searched refs:oprand2 (Results 1 - 11 of 11) sorted by last modified time

/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...
/external/javassist/src/main/javassist/compiler/
H A DCodeGen.java744 ASTree right = expr.oprand2();
824 arrayAccess(array.oprand1(), array.oprand2());
964 ASTree right = expr.oprand2();
1114 booleanExpr(isAndAnd, bexpr.oprand2());
1169 expr.oprand2().accept(this);
1452 String member = ((Symbol)expr.oprand2()).get();
1466 atArrayRead(oprand, expr.oprand2());
1690 oprand = expr.oprand2();
1775 arrayAccess(expr.oprand1(), expr.oprand2());
H A DJvstCodeGen.java234 procHandler.doit(this, bytecode, (ASTList)expr.oprand2());
238 atCflow((ASTList)expr.oprand2());
285 makeCflowName(sbuf, expr.oprand2());
H A DJvstTypeChecker.java147 (ASTList)expr.oprand2());
151 atCflow((ASTList)expr.oprand2());
H A DMemberCodeGen.java452 ASTList args = (ASTList)expr.oprand2();
482 mname = ((Symbol)e.oprand2()).get();
1041 (Symbol)e.oprand2());
1055 (Symbol)e.oprand2());
1057 && ((Symbol)e.oprand2()).get().equals("length"))
1077 Symbol fname = (Symbol)e.oprand2();
H A DParser.java1200 toClassName(expr.oprand2(), sbuf);
H A DTypeChecker.java215 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())
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DAssignExpr.java33 ASTree oprand2) {
34 return new AssignExpr(op, oprand1, new ASTList(oprand2));
32 makeAssign(int op, ASTree oprand1, ASTree oprand2) argument
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));
61 public ASTree oprand2() { return getRight().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));

Completed in 150 milliseconds