Home
last modified time | relevance | path

Searched refs:CHECKCAST (Results 1 – 25 of 53) sorted by relevance

123

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DCHECKCAST.java28 public class CHECKCAST extends CPInstruction implements LoadClass, ExceptionThrower, StackProducer, class
35 CHECKCAST() { in CHECKCAST() method in CHECKCAST
42 public CHECKCAST(final int index) { in CHECKCAST() method in CHECKCAST
43 super(org.apache.bcel.Const.CHECKCAST, index); in CHECKCAST()
DInstructionFactory.java606 return new CHECKCAST(cp.addArrayClass((ArrayType) dest_type)); in createCast()
608 return new CHECKCAST(cp.addClass(((ObjectType) dest_type).getClassName())); in createCast()
635 public CHECKCAST createCheckCast( final ReferenceType t ) { in createCheckCast()
637 return new CHECKCAST(cp.addArrayClass((ArrayType) t)); in createCheckCast()
639 return new CHECKCAST(cp.addClass((ObjectType) t)); in createCheckCast()
DInstruction.java434 case Const.CHECKCAST: in readInstruction()
435 obj = new CHECKCAST(); in readInstruction()
DVisitor.java141 void visitCHECKCAST( CHECKCAST obj ); in visitCHECKCAST()
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DOldClassInstrumentor.java247 instructions.add(new TypeInsnNode(Opcodes.CHECKCAST, remappedType)); in interceptInvokeVirtualMethodWithoutInvokeDynamic()
253 instructions.add(new TypeInsnNode(Opcodes.CHECKCAST, Type.getInternalName(Long.class))); in interceptInvokeVirtualMethodWithoutInvokeDynamic()
257 instructions.add(new TypeInsnNode(Opcodes.CHECKCAST, Type.getInternalName(Float.class))); in interceptInvokeVirtualMethodWithoutInvokeDynamic()
261 instructions.add(new TypeInsnNode(Opcodes.CHECKCAST, Type.getInternalName(Double.class))); in interceptInvokeVirtualMethodWithoutInvokeDynamic()
265 instructions.add(new TypeInsnNode(Opcodes.CHECKCAST, Type.getInternalName(Boolean.class))); in interceptInvokeVirtualMethodWithoutInvokeDynamic()
269 instructions.add(new TypeInsnNode(Opcodes.CHECKCAST, Type.getInternalName(Integer.class))); in interceptInvokeVirtualMethodWithoutInvokeDynamic()
273 instructions.add(new TypeInsnNode(Opcodes.CHECKCAST, Type.getInternalName(Short.class))); in interceptInvokeVirtualMethodWithoutInvokeDynamic()
277 instructions.add(new TypeInsnNode(Opcodes.CHECKCAST, Type.getInternalName(Byte.class))); in interceptInvokeVirtualMethodWithoutInvokeDynamic()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DKotlinCoroutineFilterTest.java155 m.visitTypeInsn(Opcodes.CHECKCAST, "kotlin/Result$Failure"); in should_filter_suspending_lambdas()
193 m.visitTypeInsn(Opcodes.CHECKCAST, "kotlin/Result$Failure"); in should_filter_suspending_lambdas()
253 m.visitTypeInsn(Opcodes.CHECKCAST, "ExampleKt$example$1"); in should_filter_suspending_functions()
313 m.visitTypeInsn(Opcodes.CHECKCAST, "kotlin/Result$Failure"); in should_filter_suspending_functions()
344 m.visitTypeInsn(Opcodes.CHECKCAST, "kotlin/Result$Failure"); in should_filter_suspending_functions()
DKotlinWhenFilterTest.java79 m.visitTypeInsn(Opcodes.CHECKCAST, "java/lang/Throwable"); in should_not_filter_explicit_else()
DAbstractMatcherTest.java184 matcher.nextIsType(Opcodes.CHECKCAST, "descriptor"); in nextIsType()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DKotlinCoroutineFilter.java158 nextIsType(Opcodes.CHECKCAST, "kotlin/Result$Failure"); in nextIsThrowOnFailure()
176 nextIs(Opcodes.CHECKCAST); in nextIsCreateStateInstance()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DCondyProbeArrayStrategy.java58 mv.visitTypeInsn(Opcodes.CHECKCAST, "[Z"); in storeInstance()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/runtime/
DLoggerRuntime.java149 mv.visitTypeInsn(Opcodes.CHECKCAST, InstrSupport.DATAFIELD_DESC); in generateDataAccessor()
DURLStreamHandlerRuntime.java125 mv.visitTypeInsn(Opcodes.CHECKCAST, InstrSupport.DATAFIELD_DESC); in generateDataAccessor()
DRuntimeData.java271 mv.visitTypeInsn(Opcodes.CHECKCAST, InstrSupport.DATAFIELD_DESC); in generateAccessCall()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
DCondyProbeArrayStrategyTest.java62 assertEquals(Opcodes.CHECKCAST, castInstruction.getOpcode()); in should_store_instance_using_condy_and_checkcast()
/external/javassist/src/main/javassist/bytecode/
DOpcode.java52 int CHECKCAST = 192; field
DInstructionPrinter.java147 case CHECKCAST: in instructionString()
DBytecode.java822 addOpcode(CHECKCAST); in addCheckcast()
832 addOpcode(CHECKCAST); in addCheckcast()
/external/javassist/src/main/javassist/expr/
DCast.java175 bytecode.addOpcode(Opcode.CHECKCAST); in doit()
DExprEditor.java244 else if (c == Opcode.CHECKCAST) { in loopBody()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
DBCELFactory.java34 import org.apache.bcel.generic.CHECKCAST;
250 public void visitCHECKCAST( final CHECKCAST i ) { in visitCHECKCAST()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/
DResizeInstructionsTest.java148 mv.visitTypeInsn(Opcodes.CHECKCAST, "java/lang/Integer"); in addCauseOfGetCommonSuperClass()
/external/javassist/src/main/javassist/convert/
DTransformAccessArrayField.java158 iterator.writeByte(CHECKCAST, pos + 3); in replace()
/external/desugar/java/com/google/devtools/build/android/desugar/
DCoreLibrarySupport.java381 dispatchMethod.visitTypeInsn(Opcodes.CHECKCAST, emulationInterface); in makeDispatchHelperMethod()
410 dispatchMethod.visitTypeInsn(Opcodes.CHECKCAST, testedName); // make verifier happy in makeDispatchHelperMethod()
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/
DFlowAnalyzer.kt274 CHECKCAST -> { in executeOne()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/
DConstants.java1064 short CHECKCAST = 192; field

123