Home
last modified time | relevance | path

Searched refs:IFNONNULL (Results 1 – 25 of 105) sorted by relevance

12345

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DIFNONNULL.java27 public class IFNONNULL extends IfInstruction { class
33 IFNONNULL() { in IFNONNULL() method in IFNONNULL
37 public IFNONNULL(final InstructionHandle target) { in IFNONNULL() method in IFNONNULL
38 super(org.apache.bcel.Const.IFNONNULL, target); in IFNONNULL()
DIFNULL.java47 return new IFNONNULL(super.getTarget()); in negate()
DInstruction.java446 case Const.IFNONNULL: in readInstruction()
447 obj = new IFNONNULL(); in readInstruction()
DInstructionFactory.java750 case Const.IFNONNULL: in createBranchInstruction()
751 return new IFNONNULL(target); in createBranchInstruction()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DKotlinUnsafeCastOperatorFilterTest.java39 m.visitJumpInsn(Opcodes.IFNONNULL, label); in should_filter()
62 m.visitJumpInsn(Opcodes.IFNONNULL, label); in should_filter_Kotlin_1_4()
106 m.visitJumpInsn(Opcodes.IFNONNULL, label); in should_filter_Kotlin_1_5()
128 m.visitJumpInsn(Opcodes.IFNONNULL, label); in should_not_filter_when_not_kotlin()
DTryWithResourcesEcjFilterTest.java218 m.visitJumpInsn(Opcodes.IFNONNULL, suppressStart); in ecj()
257 m.visitJumpInsn(Opcodes.IFNONNULL, suppressStart); in ecj()
287 m.visitJumpInsn(Opcodes.IFNONNULL, suppressStart); in ecj()
509 m.visitJumpInsn(Opcodes.IFNONNULL, suppressStart); in ecj_noFlowOut()
539 m.visitJumpInsn(Opcodes.IFNONNULL, suppressStart); in ecj_noFlowOut()
569 m.visitJumpInsn(Opcodes.IFNONNULL, suppressStart); in ecj_noFlowOut()
DKotlinLateinitFilterTest.java43 m.visitJumpInsn(Opcodes.IFNONNULL, l2); in testLateinitBranchIsFiltered()
80 m.visitJumpInsn(Opcodes.IFNONNULL, label); in should_filter_Kotlin_1_5()
DKotlinNotNullOperatorFilterTest.java43 m.visitJumpInsn(Opcodes.IFNONNULL, label); in should_filter()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DMethodInstrumenter.java104 return Opcodes.IFNONNULL; in getInverted()
105 case Opcodes.IFNONNULL: in getInverted()
DClassFieldProbeArrayStrategy.java88 mv.visitJumpInsn(Opcodes.IFNONNULL, alreadyInitialized); in createInitMethod()
DInterfaceFieldProbeArrayStrategy.java116 mv.visitJumpInsn(Opcodes.IFNONNULL, alreadyInitialized); in createInitMethod()
/external/javassist/src/main/javassist/bytecode/analysis/
DUtil.java34 …return (opcode >= IFEQ && opcode <= JSR) || opcode == IFNULL || opcode == IFNONNULL || opcode == J… in isJumpInstruction()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DKotlinNotNullOperatorFilter.java36 if (Opcodes.IFNONNULL != start.getOpcode()) { in match()
DKotlinLateinitFilter.java38 if (Opcodes.IFNONNULL != start.getOpcode()) { in match()
DKotlinUnsafeCastOperatorFilter.java44 if (Opcodes.IFNONNULL != start.getOpcode()) { in match()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
DMethodInstrumenterTest.java165 testVisitJumpInsnWithProbe(Opcodes.IFNULL, Opcodes.IFNONNULL); in testVisitJumpInsnWithProbe_IFNULL()
170 testVisitJumpInsnWithProbe(Opcodes.IFNONNULL, Opcodes.IFNULL); in testVisitJumpInsnWithProbe_IFNONNULL()
/external/javassist/src/main/javassist/bytecode/
DOpcode.java140 int IFNONNULL = 199; field
DCodeIterator.java891 || inst == IFNULL || inst == IFNONNULL) { in insertGap2()
1189 || inst == IFNULL || inst == IFNONNULL) { in makeJumpList()
1447 return IFNONNULL; in opcode()
1448 else if (op == IFNONNULL) in opcode()
DCodeAnalyzer.java104 || opcode == IFNULL || opcode == IFNONNULL) { in processBranch()
/external/desugar/test/java/com/google/devtools/build/android/desugar/
DBug62060793TestDataGenerator.java40 import static org.objectweb.asm.Opcodes.IFNONNULL;
173 mv.visitJumpInsn(IFNONNULL, l0); in createClass()
/external/ow2-asm/asm/src/main/java/org/objectweb/asm/
DConstants.java180 static final int ASM_IFNONNULL = Opcodes.IFNONNULL + ASM_IFNULL_OPCODE_DELTA;
DOpcodes.java562 int IFNONNULL = 199; // - field
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DMethodProbesAdapter.java136 case Opcodes.IFNONNULL: in jumpPopCount()
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/
DAsmUtil.kt124 … GOTO, TABLESWITCH, LOOKUPSWITCH, ATHROW, IFEQ, IFNE, IFLT, IFGE, IFGT, IFLE, IFNULL, IFNONNULL, in nextVarLoad()
/external/ow2-asm/asm-analysis/src/test/java/org/objectweb/asm/tree/analysis/
DMethodNodeBuilder.java177 methodNode.visitJumpInsn(Opcodes.IFNONNULL, label); in ifnonnull()

12345