Home
last modified time | relevance | path

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

123

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DGETFIELD.java31 public class GETFIELD extends FieldInstruction implements ExceptionThrower, StackConsumer, class
38 GETFIELD() { in GETFIELD() method in GETFIELD
42 public GETFIELD(final int index) { in GETFIELD() method in GETFIELD
43 super(Const.GETFIELD, index); in GETFIELD()
DInstructionFactory.java277 case Const.GETFIELD: in createFieldAccess()
278 return new GETFIELD(index); in createFieldAccess()
615 public GETFIELD createGetField( final String class_name, final String name, final Type t ) { in createGetField()
616 return new GETFIELD(cp.addFieldref(class_name, name, t.getSignature())); in createGetField()
DInstruction.java404 case Const.GETFIELD: in readInstruction()
405 obj = new GETFIELD(); in readInstruction()
DVisitor.java378 void visitGETFIELD( GETFIELD obj ); in visitGETFIELD()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DKotlinCoroutineFilterTest.java45 m.visitFieldInsn(Opcodes.GETFIELD, "Target", "label", "I"); in should_filter_suspending_lambdas_generated_by_Kotlin_1_3_30()
80 m.visitFieldInsn(Opcodes.GETFIELD, "Target", "I$0", "I"); in should_filter_suspending_lambdas_generated_by_Kotlin_1_3_30()
141 m.visitFieldInsn(Opcodes.GETFIELD, "Target", "label", "I"); in should_filter_suspending_lambdas()
156 m.visitFieldInsn(Opcodes.GETFIELD, "kotlin/Result$Failure", in should_filter_suspending_lambdas()
184 m.visitFieldInsn(Opcodes.GETFIELD, "Target", "I$0", "I"); in should_filter_suspending_lambdas()
194 m.visitFieldInsn(Opcodes.GETFIELD, "kotlin/Result$Failure", in should_filter_suspending_lambdas()
257 m.visitFieldInsn(Opcodes.GETFIELD, "ExampleKt$example$1", "label", "I"); in should_filter_suspending_functions()
265 m.visitFieldInsn(Opcodes.GETFIELD, "ExampleKt$example$1", "label", "I"); in should_filter_suspending_functions()
287 m.visitFieldInsn(Opcodes.GETFIELD, "ExampleKt$example$1", "result", in should_filter_suspending_functions()
299 m.visitFieldInsn(Opcodes.GETFIELD, "ExampleKt$example$1", "label", "I"); in should_filter_suspending_functions()
[all …]
DSynchronizedFilterTest.java41 m.visitFieldInsn(Opcodes.GETFIELD, "Fun", "lock", "Ljava/lang/Object;"); in javac()
131 m.visitFieldInsn(Opcodes.GETFIELD, "Target", "lock", in ecj()
DKotlinLateinitFilterTest.java38 m.visitFieldInsn(Opcodes.GETFIELD, in testLateinitBranchIsFiltered()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DKotlinCoroutineFilter.java68 nextIs(Opcodes.GETFIELD); in match()
159 nextIs(Opcodes.GETFIELD); in nextIsThrowOnFailure()
180 nextIs(Opcodes.GETFIELD); in nextIsCreateStateInstance()
192 nextIs(Opcodes.GETFIELD); in nextIsCreateStateInstance()
210 nextIs(Opcodes.GETFIELD); in nextIsCreateStateInstance()
/external/javassist/src/main/javassist/convert/
DTransformFieldAccess.java65 if (c == GETFIELD || c == GETSTATIC in transform()
DTransformReadField.java76 if (c == GETFIELD || c == GETSTATIC) { in transform()
/external/desugar/test/java/com/google/devtools/build/android/desugar/
DCorePackageRenamerTest.java63 Opcodes.GETFIELD, "other/time/Instant", "now", "Ljava/time/Instant;"); in testSymbolRewrite()
/external/javassist/src/main/javassist/bytecode/
DOpcode.java112 int GETFIELD = 180; field
DCodeAnalyzer.java217 case GETFIELD : in visitInst()
DInstructionPrinter.java131 case GETFIELD: in instructionString()
DBytecode.java856 add(GETFIELD); in addGetfield()
872 add(GETFIELD); in addGetfield()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
DDuplicateFrameEliminatorTest.java91 testInstructionBetweenFrames(new FieldInsnNode(Opcodes.GETFIELD, "Foo", in testFieldInsn()
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/
DAsmUtil.kt61 this is FieldInsnNode && this.opcode == GETFIELD && this.owner == owner in AbstractInsnNode()
DAtomicFUTransformer.kt653 iv.name == GET_VALUE -> if (f.isStatic && vh) GETSTATIC else GETFIELD in fixupInvokeVirtual()
936 GETFIELD, GETSTATIC -> { /* getting fields */ } in checkDataFlowComplexity()
1056 j.opcode = if (!f.isStatic) GETFIELD else GETSTATIC in transform()
1079 if ((i.opcode == GETFIELD || i.opcode == GETSTATIC) && fieldId in fields) { in transform()
1106 … val getPureArray = FieldInsnNode(GETFIELD, f.owner, f.name, f.getPrimitiveType(vh).descriptor) in insertPureVhArray()
DFlowAnalyzer.kt99 GETFIELD -> { in executeOne()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/
DRuntimeDataTest.java180 mv.visitFieldInsn(Opcodes.GETFIELD, "Sample", "access", in testGenerateAccessCall()
/external/javassist/src/main/javassist/expr/
DExprEditor.java199 else if (c == Opcode.GETFIELD || c == Opcode.GETSTATIC in loopBody()
DFieldAccess.java96 return opcode == Opcode.GETFIELD || opcode == Opcode.GETSTATIC; in isReader()
/external/desugar/java/com/google/devtools/build/android/desugar/
DLambdaDesugaring.java502 if (insn.getOpcode() == Opcodes.GETFIELD) { in attemptAllocationBeforeArgumentLoads()
518 while (insn.getOpcode() == Opcodes.GETFIELD) { in attemptAllocationBeforeArgumentLoads()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DLabelFlowAnalyzerTest.java294 analyzer.visitFieldInsn(GETFIELD, "Foo", "name", "Ljava/lang/String;"); in testFieldInsn()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/
DConstants.java1012 short GETFIELD = 180; field

123