Searched refs:branchIf (Results 1 – 1 of 1) sorted by relevance
257 public boolean compileBooleanExpr(boolean branchIf, ASTree expr) in compileBooleanExpr() argument261 return booleanExpr(branchIf, expr); in compileBooleanExpr()1151 private boolean booleanExpr(boolean branchIf, ASTree expr) in booleanExpr() argument1161 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() argument1205 return branchIf ? t == TRUE : t == FALSE; in isAlwaysBranch()[all …]