Home
last modified time | relevance | path

Searched refs:oprand (Results 1 – 3 of 3) sorted by relevance

/external/javassist/src/main/javassist/compiler/
DTypeChecker.java563 ASTree oprand = expr.oprand1(); in atExpr() local
581 atArrayRead(oprand, expr.oprand2()); in atExpr()
583 atPlusPlus(token, oprand, expr); in atExpr()
589 oprand.accept(this); in atExpr()
590 if (!isConstant(expr, token, oprand)) in atExpr()
597 private boolean isConstant(Expr expr, int op, ASTree oprand) { in isConstant() argument
598 oprand = stripPlusExpr(oprand); in isConstant()
599 if (oprand instanceof IntConst) { in isConstant()
600 IntConst c = (IntConst)oprand; in isConstant()
611 else if (oprand instanceof DoubleConst) { in isConstant()
[all …]
DCodeGen.java1386 ASTree oprand = expr.getOprand(); in checkCastExpr() local
1389 oprand.accept(this); in checkCastExpr()
1450 ASTree oprand = expr.oprand1(); in atExpr() local
1466 atArrayRead(oprand, expr.oprand2()); in atExpr()
1468 atPlusPlus(token, oprand, expr, true); in atExpr()
1685 private void atPlusPlus(int token, ASTree oprand, Expr expr, in atPlusPlus() argument
1688 boolean isPost = oprand == null; // ++i or i++? in atPlusPlus()
1690 oprand = expr.oprand2(); in atPlusPlus()
1692 if (oprand instanceof Variable) { in atPlusPlus()
1693 Declarator d = ((Variable)oprand).getDeclarator(); in atPlusPlus()
[all …]
DMemberCodeGen.java981 ASTree oprand, Expr expr, boolean doDup) in atFieldPlusPlus() argument
984 CtField f = fieldAccess(oprand, false); in atFieldPlusPlus()