Home
last modified time | relevance | path

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

/external/javassist/src/main/javassist/compiler/
DCodeGen.java257 public boolean compileBooleanExpr(boolean branchIf, ASTree expr) in compileBooleanExpr() argument
261 return booleanExpr(branchIf, expr); in compileBooleanExpr()
1151 private boolean booleanExpr(boolean branchIf, ASTree expr) in booleanExpr() argument
1161 compareExpr(branchIf, bexpr.getOperator(), type1, bexpr); in booleanExpr()
1164 return booleanExpr(!branchIf, ((Expr)expr).oprand1()); in booleanExpr()
1178 if (branchIf != isAndAnd) { in booleanExpr()
1183 else if (isAlwaysBranch(expr, branchIf)) { in booleanExpr()
1194 bytecode.addOpcode(branchIf ? IFNE : IFEQ); in booleanExpr()
1202 private static boolean isAlwaysBranch(ASTree expr, boolean branchIf) { in isAlwaysBranch() argument
1205 return branchIf ? t == TRUE : t == FALSE; in isAlwaysBranch()
[all …]