Searched refs:BinExpr (Results 1 - 8 of 8) sorted by relevance

/external/javassist/src/main/javassist/compiler/ast/
H A DBinExpr.java26 public class BinExpr extends Expr { class in inherits:Expr
32 private BinExpr(int op, ASTree _head, ASTList _tail) { method in class:BinExpr
36 public static BinExpr makeBin(int op, ASTree oprand1, ASTree oprand2) {
37 return new BinExpr(op, oprand1, new ASTList(oprand2));
H A DVisitor.java36 public void atBinExpr(BinExpr n) throws CompileError {}
/external/javassist/src/main/javassist/compiler/
H A DTypeChecker.java304 public void atBinExpr(BinExpr expr) throws CompileError {
344 private Expr atPlusExpr(BinExpr expr) throws CompileError {
355 Expr newExpr = atPlusExpr((BinExpr)left);
392 private boolean isConstant(BinExpr expr, int op, ASTree left,
420 if (expr instanceof BinExpr) {
421 BinExpr e = (BinExpr)expr;
425 else if (expr instanceof Expr) { // note: BinExpr extends Expr.
480 if (expr instanceof BinExpr) {
481 BinExpr bexp
[all...]
H A DCodeGen.java956 public void atBinExpr(BinExpr expr) throws CompileError {
1100 BinExpr bexpr = (BinExpr)expr;
1109 BinExpr bexpr = (BinExpr)expr;
1154 else if ((bexpr instanceof BinExpr)
1165 private int compileOprands(BinExpr expr) throws CompileError {
1202 int token, int type1, BinExpr expr)
H A DParser.java815 return BinExpr.makeBin(t, expr, expr2);
/external/chromium_org/third_party/jinja2/
H A Dnodes.py372 class BinExpr(Expr): class in inherits:Expr
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)
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1216 BinaryOperator *BinExpr = cast<BinaryOperator>(Op1); variable
1217 return B.CreateCall(Callee, BinExpr->getOperand(1), "cos");
/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/ ...

Completed in 3456 milliseconds