Searched refs:whenTrue (Results 1 - 12 of 12) sorted by relevance

/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
85 asm.add(where, whenTrue ? opc_if_icmpeq : opc_if_icmpne, lbl, whenTrue);
105 asm.add(where, whenTrue ? opc_ifnull : opc_ifnonnull, lbl, whenTrue);
108 asm.add(where, whenTrue ? opc_if_acmpeq : opc_if_acmpne, lbl, whenTrue);
115 asm.add(where, whenTrue ? opc_ifeq : opc_ifne, lbl, whenTrue);
H A DNotEqualExpression.java78 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
85 asm.add(where, whenTrue ? opc_if_icmpne : opc_if_icmpeq, lbl, whenTrue);
105 asm.add(where, whenTrue ? opc_ifnonnull : opc_ifnull, lbl, whenTrue);
108 asm.add(where, whenTrue ? opc_if_acmpne : opc_if_acmpeq, lbl, whenTrue);
114 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
H A DGreaterOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmpge : opc_if_icmplt, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifge : opc_iflt, lbl, whenTrue);
H A DGreaterExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmpgt : opc_if_icmple, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifgt : opc_ifle, lbl, whenTrue);
H A DLessOrEqualExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmple : opc_if_icmpgt, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_ifle : opc_ifgt, lbl, whenTrue);
H A DLessExpression.java75 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
81 asm.add(where, whenTrue ? opc_if_icmplt : opc_if_icmpge, lbl, whenTrue);
100 asm.add(where, whenTrue ? opc_iflt : opc_ifge, lbl, whenTrue);
H A DBooleanExpression.java103 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
104 if (value == whenTrue) {
H A DAndExpression.java104 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
105 if (whenTrue) {
H A DOrExpression.java104 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
105 if (whenTrue) {
H A DInstanceOfExpression.java116 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
118 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);
H A DNotExpression.java132 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
133 right.codeBranch(env, ctx, asm, lbl, !whenTrue);
H A DExpression.java421 void codeBranch(Environment env, Context ctx, Assembler asm, Label lbl, boolean whenTrue) { argument
424 asm.add(where, whenTrue ? opc_ifne : opc_ifeq, lbl, whenTrue);

Completed in 153 milliseconds