Home
last modified time | relevance | path

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

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DKotlinCoroutineFilterTest.java99 m.visitTypeInsn(Opcodes.NEW, "java/lang/IllegalStateException"); in should_filter_suspending_lambdas_generated_by_Kotlin_1_3_30()
152 m.visitTypeInsn(Opcodes.INSTANCEOF, "kotlin/Result$Failure"); in should_filter_suspending_lambdas()
155 m.visitTypeInsn(Opcodes.CHECKCAST, "kotlin/Result$Failure"); in should_filter_suspending_lambdas()
190 m.visitTypeInsn(Opcodes.INSTANCEOF, "kotlin/Result$Failure"); in should_filter_suspending_lambdas()
193 m.visitTypeInsn(Opcodes.CHECKCAST, "kotlin/Result$Failure"); in should_filter_suspending_lambdas()
211 m.visitTypeInsn(Opcodes.NEW, "java/lang/IllegalStateException"); in should_filter_suspending_lambdas()
248 m.visitTypeInsn(Opcodes.INSTANCEOF, "ExampleKt$example$1"); in should_filter_suspending_functions()
253 m.visitTypeInsn(Opcodes.CHECKCAST, "ExampleKt$example$1"); in should_filter_suspending_functions()
276 m.visitTypeInsn(Opcodes.NEW, "ExampleKt$example$1"); in should_filter_suspending_functions()
310 m.visitTypeInsn(Opcodes.INSTANCEOF, "kotlin/Result$Failure"); in should_filter_suspending_functions()
[all …]
DKotlinWhenFilterTest.java51 m.visitTypeInsn(Opcodes.NEW, "kotlin/NoWhenBranchMatchedException"); in should_filter_implicit_else()
75 m.visitTypeInsn(Opcodes.NEW, "kotlin/NoWhenBranchMatchedException"); in should_not_filter_explicit_else()
79 m.visitTypeInsn(Opcodes.CHECKCAST, "java/lang/Throwable"); in should_not_filter_explicit_else()
108 m.visitTypeInsn(Opcodes.NEW, "kotlin/NoWhenBranchMatchedException"); in should_filter_implicit_default()
DKotlinUnsafeCastOperatorFilterTest.java38 m.visitTypeInsn(Opcodes.NEW, "kotlin/TypeCastException"); in should_filter()
DAbstractMatcherTest.java180 m.visitTypeInsn(Opcodes.NEW, "descriptor"); in nextIsType()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DURLStreamHandlerRuntime.java87 mv.visitTypeInsn(Opcodes.NEW, "java/net/URL"); in generateDataAccessor()
125 mv.visitTypeInsn(Opcodes.CHECKCAST, InstrSupport.DATAFIELD_DESC); in generateDataAccessor()
DRuntimeData.java204 mv.visitTypeInsn(Opcodes.ANEWARRAY, "java/lang/Object"); in generateArgumentArray()
271 mv.visitTypeInsn(Opcodes.CHECKCAST, InstrSupport.DATAFIELD_DESC); in generateAccessCall()
DLoggerRuntime.java149 mv.visitTypeInsn(Opcodes.CHECKCAST, InstrSupport.DATAFIELD_DESC); in generateDataAccessor()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DDuplicateFrameEliminator.java61 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn() method in DuplicateFrameEliminator
63 mv.visitTypeInsn(opcode, type); in visitTypeInsn()
DCondyProbeArrayStrategy.java58 mv.visitTypeInsn(Opcodes.CHECKCAST, "[Z"); in storeInstance()
/external/desugar/test/java/com/google/devtools/build/android/desugar/
DByteCodeTypePrinter.java210 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn() method in ByteCodeTypePrinter.MethodIrTypeDumper
211 printer.visitTypeInsn(opcode, type); in visitTypeInsn()
213 super.visitTypeInsn(opcode, type); in visitTypeInsn()
DBug62060793TestDataGenerator.java196 mv.visitTypeInsn(NEW, "java/lang/StringBuilder"); in createClass()
/external/desugar/java/com/google/devtools/build/android/desugar/
DCoreLibrarySupport.java378 dispatchMethod.visitTypeInsn(Opcodes.INSTANCEOF, emulationInterface); in makeDispatchHelperMethod()
381 dispatchMethod.visitTypeInsn(Opcodes.CHECKCAST, emulationInterface); in makeDispatchHelperMethod()
407 dispatchMethod.visitTypeInsn(Opcodes.INSTANCEOF, testedName); in makeDispatchHelperMethod()
410 dispatchMethod.visitTypeInsn(Opcodes.CHECKCAST, testedName); // make verifier happy in makeDispatchHelperMethod()
DLambdaClassFixer.java188 codeBuilder.visitTypeInsn(Opcodes.NEW, getInternalName()); in visitEnd()
272 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn() method in LambdaClassFixer.LambdaClassMethodRewriter
277 super.visitTypeInsn(opcode, type); in visitTypeInsn()
DBytecodeTypeInference.java427 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn() method in BytecodeTypeInference
448 super.visitTypeInsn(opcode, type); in visitTypeInsn()
DLambdaDesugaring.java130 bridgeMethod.visitTypeInsn(Opcodes.NEW, original.getOwner()); in visitEnd()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DLabelFlowAnalyzer.java170 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn() method in LabelFlowAnalyzer
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/
DResizeInstructionsTest.java148 mv.visitTypeInsn(Opcodes.CHECKCAST, "java/lang/Integer"); in addCauseOfGetCommonSuperClass()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodAnalyzer.java83 public void visitTypeInsn(final int opcode, final String type) { in visitTypeInsn() method in MethodAnalyzer
/external/desugar/java/com/google/devtools/build/android/desugar/io/
DHeaderClassLoader.java224 super.visitTypeInsn(Opcodes.NEW, EXCEPTION_INTERNAL_NAME); in visitEnd()
/external/desugar/java/com/google/devtools/build/android/desugar/scan/
DPrefixReferenceScanner.java259 public void visitTypeInsn(int opcode, String type) { in visitTypeInsn() method in PrefixReferenceScanner.PrefixReferenceMethodVisitor
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DLabelFlowAnalyzerTest.java286 analyzer.visitTypeInsn(NEW, "java/lang/String"); in testTypeInsn()