Home
last modified time | relevance | path

Searched refs:ASTORE (Results 1 – 25 of 52) sorted by relevance

123

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DTryWithResourcesJavacFilterTest.java118 m.visitVarInsn(Opcodes.ASTORE, 1); in javac9()
122 m.visitVarInsn(Opcodes.ASTORE, 2); in javac9()
125 m.visitVarInsn(Opcodes.ASTORE, 3); in javac9()
129 m.visitVarInsn(Opcodes.ASTORE, 4); in javac9()
134 m.visitVarInsn(Opcodes.ASTORE, 5); in javac9()
165 m.visitVarInsn(Opcodes.ASTORE, 5); in javac9()
168 m.visitVarInsn(Opcodes.ASTORE, 4); in javac9()
174 m.visitVarInsn(Opcodes.ASTORE, 6); in javac9()
187 m.visitVarInsn(Opcodes.ASTORE, 3); in javac9()
190 m.visitVarInsn(Opcodes.ASTORE, 2); in javac9()
[all …]
DTryWithResourcesEcjFilterTest.java168 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj()
171 m.visitVarInsn(Opcodes.ASTORE, 2); in ecj()
192 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj()
214 m.visitVarInsn(Opcodes.ASTORE, 2); in ecj()
219 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj()
253 m.visitVarInsn(Opcodes.ASTORE, 2); in ecj()
258 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj()
283 m.visitVarInsn(Opcodes.ASTORE, 2); in ecj()
288 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj()
447 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj_noFlowOut()
[all …]
DFinallyFilterTest.java82 m.visitVarInsn(Opcodes.ASTORE, 1); in should_analyze_control_flow()
126 m.visitVarInsn(Opcodes.ASTORE, 1); in javac_try_catch_finally()
170 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj_try_catch_finally()
217 m.visitVarInsn(Opcodes.ASTORE, 1); in javac_empty_catch()
225 m.visitVarInsn(Opcodes.ASTORE, 1); in javac_empty_catch()
267 m.visitVarInsn(Opcodes.ASTORE, 1); in javac_8_empty_catch()
274 m.visitVarInsn(Opcodes.ASTORE, 1); in javac_8_empty_catch()
315 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj_empty_catch()
349 m.visitVarInsn(Opcodes.ASTORE, 1); in javac_always_completes_abruptly()
DSynchronizedFilterTest.java43 m.visitVarInsn(Opcodes.ASTORE, 1); in javac()
53 m.visitVarInsn(Opcodes.ASTORE, 2); in javac()
100 m.visitVarInsn(Opcodes.ASTORE, 1); in javacTryCatchFinally()
108 m.visitVarInsn(Opcodes.ASTORE, 2); in javacTryCatchFinally()
134 m.visitVarInsn(Opcodes.ASTORE, 1); in ecj()
DTryWithResourcesJavac11FilterTest.java59 m.visitVarInsn(Opcodes.ASTORE, 1); in without_null_check()
65 m.visitVarInsn(Opcodes.ASTORE, 2); in without_null_check()
113 m.visitVarInsn(Opcodes.ASTORE, 1); in with_null_check()
121 m.visitVarInsn(Opcodes.ASTORE, 2); in with_null_check()
DStringSwitchEcjFilterTest.java47 m.visitVarInsn(Opcodes.ASTORE, 1); in should_filter()
52 m.visitVarInsn(Opcodes.ASTORE, 2); in should_filter()
122 m.visitVarInsn(Opcodes.ASTORE, 1); in should_filter_when_default_is_first()
127 m.visitVarInsn(Opcodes.ASTORE, 2); in should_filter_when_default_is_first()
DKotlinCoroutineFilterTest.java41 m.visitVarInsn(Opcodes.ASTORE, 4); in should_filter_suspending_lambdas_generated_by_Kotlin_1_3_30()
137 m.visitVarInsn(Opcodes.ASTORE, 4); in should_filter_suspending_lambdas()
254 m.visitVarInsn(Opcodes.ASTORE, continuationIndex); in should_filter_suspending_functions()
282 m.visitVarInsn(Opcodes.ASTORE, continuationIndex); in should_filter_suspending_functions()
289 m.visitVarInsn(Opcodes.ASTORE, 1); in should_filter_suspending_functions()
296 m.visitVarInsn(Opcodes.ASTORE, 3); in should_filter_suspending_functions()
DKotlinWhenStringFilterTest.java48 m.visitVarInsn(Opcodes.ASTORE, 1); in should_filter()
52 m.visitVarInsn(Opcodes.ASTORE, 2); in should_filter()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DASTORE.java26 public class ASTORE extends StoreInstruction { class
32 ASTORE() { in ASTORE() method in ASTORE
33 super(org.apache.bcel.Const.ASTORE, org.apache.bcel.Const.ASTORE_0); in ASTORE()
40 public ASTORE(final int n) { in ASTORE() method in ASTORE
41 super(org.apache.bcel.Const.ASTORE, org.apache.bcel.Const.ASTORE_0, n); in ASTORE()
DInstruction.java275 case Const.ASTORE: in readInstruction()
276 obj = new ASTORE(); in readInstruction()
327 obj = new ASTORE(0); in readInstruction()
330 obj = new ASTORE(1); in readInstruction()
333 obj = new ASTORE(2); in readInstruction()
336 obj = new ASTORE(3); in readInstruction()
DLocalVariableInstruction.java136 || ((_opcode >= Const.ISTORE) && (_opcode <= Const.ASTORE))) { in initFromFile()
217 case Const.ASTORE: in getType()
DInstructionConst.java165 public static final LocalVariableInstruction ASTORE_0 = new ASTORE(0);
166 public static final LocalVariableInstruction ASTORE_1 = new ASTORE(1);
167 public static final LocalVariableInstruction ASTORE_2 = new ASTORE(2);
DInstructionConstants.java165 LocalVariableInstruction ASTORE_0 = new ASTORE(0);
166 LocalVariableInstruction ASTORE_1 = new ASTORE(1);
167 LocalVariableInstruction ASTORE_2 = new ASTORE(2);
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DTryWithResourcesJavacFilter.java134 nextIsVar(Opcodes.ASTORE, "t1"); in matchJavac()
137 nextIsVar(Opcodes.ASTORE, "primaryExc"); in matchJavac()
143 nextIsVar(Opcodes.ASTORE, "t2"); in matchJavac()
215 nextIsVar(Opcodes.ASTORE, ctx + "t"); in nextIsJavacClose()
DTryWithResourcesEcjFilter.java70 nextIsVar(Opcodes.ASTORE, "primaryExc"); in matchEcj()
119 nextIsVar(Opcodes.ASTORE, "primaryExc"); in matchEcjNoFlowOut()
186 nextIsVar(Opcodes.ASTORE, suppressedExc); in nextIsEcjSuppress()
193 nextIsVar(Opcodes.ASTORE, "primaryExc"); in nextIsEcjSuppress()
DKotlinCoroutineFilter.java66 nextIsVar(Opcodes.ASTORE, "COROUTINE_SUSPENDED"); in match()
177 nextIs(Opcodes.ASTORE); in nextIsCreateStateInstance()
211 nextIs(Opcodes.ASTORE); in nextIsCreateStateInstance()
DTryWithResourcesJavac11Filter.java74 nextIsVar(Opcodes.ASTORE, "primaryExc"); in match()
77 nextIsVar(Opcodes.ASTORE, "t"); in match()
DSynchronizedFilter.java57 nextIsVar(Opcodes.ASTORE, "t"); in nextIsJavac()
/external/apache-commons-bcel/src/examples/
DHelloWorldBuilder.java23 import org.apache.bcel.generic.ASTORE;
103 lg.setStart(il.append(new ASTORE(in))); // `i' valid from here in main()
109 lg.setStart(il.append(new ASTORE(name))); // `name' valid from here in main()
121 il.append(new ASTORE(name)); in main()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DGeneratingAnnotatedClassesTestCase.java443 lg.setStart(il.append(new ASTORE(in))); // "in" valid from here in buildClassContentsWithAnnotatedMethods()
448 lg.setStart(il.append(new ASTORE(name))); // "name" valid from here in buildClassContentsWithAnnotatedMethods()
461 il.append(new ASTORE(name)); in buildClassContentsWithAnnotatedMethods()
470 final InstructionHandle handler = il.append(new ASTORE(var_ex_slot)); in buildClassContentsWithAnnotatedMethods()
537 lg.setStart(il.append(new ASTORE(in))); // "in" valid from here in buildClassContents()
542 lg.setStart(il.append(new ASTORE(name))); // "name" valid from here in buildClassContents()
555 il.append(new ASTORE(name)); in buildClassContents()
564 final InstructionHandle handler = il.append(new ASTORE(var_ex_slot)); in buildClassContents()
/external/desugar/test/java/com/google/devtools/build/android/desugar/
DBytecodeTypeInferenceTest.golden.txt51 ASTORE 2
187 ASTORE 0
193 ASTORE 1
232 ASTORE 2
260 ASTORE 2
266 ASTORE 1
277 ASTORE 3
306 ASTORE 4
376 ASTORE 2
414 ASTORE 5
[all …]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DInterfaceFieldProbeArrayStrategy.java71 mv.visitVarInsn(Opcodes.ASTORE, variable); in storeInstance()
79 mv.visitVarInsn(Opcodes.ASTORE, variable); in storeInstance()
DLocalProbeArrayStrategy.java45 mv.visitVarInsn(Opcodes.ASTORE, variable); in storeInstance()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/instr/
DResizeInstructionsTest.java144 mv.visitVarInsn(Opcodes.ASTORE, 1); in addCauseOfGetCommonSuperClass()
149 mv.visitVarInsn(Opcodes.ASTORE, 1); in addCauseOfGetCommonSuperClass()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/verifier/structurals/
DSubroutines.java27 import org.apache.bcel.generic.ASTORE;
195 …if (localVariable != ((ASTORE) (((JsrInstruction) jsrInst.getInstruction()).getTarget().getInstruc… in addEnteringJsrInstruction()
412 sr.setLocalVariable( ((ASTORE) (astore.getInstruction())).getIndex() ); in Subroutines()

123