Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/compiler/
DCodeGen.java232 public boolean compileBooleanExpr(boolean branchIf, ASTree expr) in compileBooleanExpr() argument
236 return booleanExpr(branchIf, expr); in compileBooleanExpr()
1094 private boolean booleanExpr(boolean branchIf, ASTree expr) in booleanExpr() argument
1104 compareExpr(branchIf, bexpr.getOperator(), type1, bexpr); in booleanExpr()
1107 booleanExpr(!branchIf, ((Expr)expr).oprand1()); in booleanExpr()
1116 if (branchIf != isAndAnd) { in booleanExpr()
1121 else if (isAlwaysBranch(expr, branchIf)) { in booleanExpr()
1130 bytecode.addOpcode(branchIf ? IFNE : IFEQ); in booleanExpr()
1139 private static boolean isAlwaysBranch(ASTree expr, boolean branchIf) { in isAlwaysBranch() argument
1142 return branchIf ? t == TRUE : t == FALSE; in isAlwaysBranch()
[all …]