/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | GETFIELD.java | 31 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()
|
D | InstructionFactory.java | 277 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()
|
D | Instruction.java | 404 case Const.GETFIELD: in readInstruction() 405 obj = new GETFIELD(); in readInstruction()
|
D | Visitor.java | 378 void visitGETFIELD( GETFIELD obj ); in visitGETFIELD()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/ |
D | KotlinCoroutineFilterTest.java | 45 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 …]
|
D | SynchronizedFilterTest.java | 41 m.visitFieldInsn(Opcodes.GETFIELD, "Fun", "lock", "Ljava/lang/Object;"); in javac() 131 m.visitFieldInsn(Opcodes.GETFIELD, "Target", "lock", in ecj()
|
D | KotlinLateinitFilterTest.java | 38 m.visitFieldInsn(Opcodes.GETFIELD, in testLateinitBranchIsFiltered()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/ |
D | KotlinCoroutineFilter.java | 68 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/ |
D | TransformFieldAccess.java | 65 if (c == GETFIELD || c == GETSTATIC in transform()
|
D | TransformReadField.java | 76 if (c == GETFIELD || c == GETSTATIC) { in transform()
|
/external/desugar/test/java/com/google/devtools/build/android/desugar/ |
D | CorePackageRenamerTest.java | 63 Opcodes.GETFIELD, "other/time/Instant", "now", "Ljava/time/Instant;"); in testSymbolRewrite()
|
/external/javassist/src/main/javassist/bytecode/ |
D | Opcode.java | 112 int GETFIELD = 180; field
|
D | CodeAnalyzer.java | 217 case GETFIELD : in visitInst()
|
D | InstructionPrinter.java | 131 case GETFIELD: in instructionString()
|
D | Bytecode.java | 856 add(GETFIELD); in addGetfield() 872 add(GETFIELD); in addGetfield()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/ |
D | DuplicateFrameEliminatorTest.java | 91 testInstructionBetweenFrames(new FieldInsnNode(Opcodes.GETFIELD, "Foo", in testFieldInsn()
|
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/ |
D | AsmUtil.kt | 61 this is FieldInsnNode && this.opcode == GETFIELD && this.owner == owner in AbstractInsnNode()
|
D | AtomicFUTransformer.kt | 653 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()
|
D | FlowAnalyzer.kt | 99 GETFIELD -> { in executeOne()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/runtime/ |
D | RuntimeDataTest.java | 180 mv.visitFieldInsn(Opcodes.GETFIELD, "Sample", "access", in testGenerateAccessCall()
|
/external/javassist/src/main/javassist/expr/ |
D | ExprEditor.java | 199 else if (c == Opcode.GETFIELD || c == Opcode.GETSTATIC in loopBody()
|
D | FieldAccess.java | 96 return opcode == Opcode.GETFIELD || opcode == Opcode.GETSTATIC; in isReader()
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | LambdaDesugaring.java | 502 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/ |
D | LabelFlowAnalyzerTest.java | 294 analyzer.visitFieldInsn(GETFIELD, "Foo", "name", "Ljava/lang/String;"); in testFieldInsn()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/ |
D | Constants.java | 1012 short GETFIELD = 180; field
|