Home
last modified time | relevance | path

Searched refs:BinExpr (Results 1 – 7 of 7) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
DBinExpr.java26 public class BinExpr extends Expr { class
32 private BinExpr(int op, ASTree _head, ASTList _tail) { in BinExpr() method in BinExpr
36 public static BinExpr makeBin(int op, ASTree oprand1, ASTree oprand2) { in makeBin()
37 return new BinExpr(op, oprand1, new ASTList(oprand2)); in makeBin()
DVisitor.java36 public void atBinExpr(BinExpr n) throws CompileError {} in atBinExpr()
/external/javassist/src/main/javassist/compiler/
DTypeChecker.java304 public void atBinExpr(BinExpr expr) throws CompileError { in atBinExpr()
344 private Expr atPlusExpr(BinExpr expr) throws CompileError { in atPlusExpr()
355 Expr newExpr = atPlusExpr((BinExpr)left); in atPlusExpr()
392 private boolean isConstant(BinExpr expr, int op, ASTree left, in isConstant()
420 if (expr instanceof BinExpr) { in stripPlusExpr()
421 BinExpr e = (BinExpr)expr; in stripPlusExpr()
480 if (expr instanceof BinExpr) { in isPlusExpr()
481 BinExpr bexpr = (BinExpr)expr; in isPlusExpr()
494 private void computeBinExprType(BinExpr expr, int token, int type1) in computeBinExprType()
513 BinExpr bexpr = (BinExpr)expr; in booleanExpr()
[all …]
DCodeGen.java956 public void atBinExpr(BinExpr expr) throws CompileError { in atBinExpr()
1100 BinExpr bexpr = (BinExpr)expr; in booleanExpr()
1109 BinExpr bexpr = (BinExpr)expr; in booleanExpr()
1154 else if ((bexpr instanceof BinExpr) in getCompOperator()
1165 private int compileOprands(BinExpr expr) throws CompileError { in compileOprands()
1202 int token, int type1, BinExpr expr) in compareExpr()
DParser.java815 return BinExpr.makeBin(t, expr, expr2); in binaryExpr2()
/external/chromium_org/third_party/jinja2/
Dnodes.py372 class BinExpr(Expr): class
726 class Mul(BinExpr):
731 class Div(BinExpr):
736 class FloorDiv(BinExpr):
743 class Add(BinExpr):
748 class Sub(BinExpr):
753 class Mod(BinExpr):
758 class Pow(BinExpr):
763 class And(BinExpr):
772 class Or(BinExpr):
/external/llvm/lib/Transforms/Utils/
DSimplifyLibCalls.cpp1109 BinaryOperator *BinExpr = cast<BinaryOperator>(Op1); in callOptimizer() local
1110 return B.CreateCall(Callee, BinExpr->getOperand(1), "cos"); in callOptimizer()