Searched refs:BinExpr (Results 1 - 6 of 6) 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/llvm/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp860 BinaryOperator *BinExpr = cast<BinaryOperator>(Op1); local
861 return B.CreateCall(Callee, BinExpr->getOperand(1), "cos");

Completed in 85 milliseconds