Home
last modified time | relevance | path

Searched refs:ISTORE (Results 1 – 25 of 35) sorted by relevance

12

/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DISTORE.java26 public class ISTORE extends StoreInstruction { class
32 ISTORE() { in ISTORE() method in ISTORE
33 super(org.apache.bcel.Const.ISTORE, org.apache.bcel.Const.ISTORE_0); in ISTORE()
40 public ISTORE(final int n) { in ISTORE() method in ISTORE
41 super(org.apache.bcel.Const.ISTORE, org.apache.bcel.Const.ISTORE_0, n); in ISTORE()
DInstruction.java263 case Const.ISTORE: in readInstruction()
264 obj = new ISTORE(); in readInstruction()
279 obj = new ISTORE(0); in readInstruction()
282 obj = new ISTORE(1); in readInstruction()
285 obj = new ISTORE(2); in readInstruction()
288 obj = new ISTORE(3); in readInstruction()
DLocalVariableInstruction.java136 || ((_opcode >= Const.ISTORE) && (_opcode <= Const.ASTORE))) { in initFromFile()
205 case Const.ISTORE: in getType()
DInstructionConst.java168 public static final LocalVariableInstruction ISTORE_0 = new ISTORE(0);
169 public static final LocalVariableInstruction ISTORE_1 = new ISTORE(1);
170 public static final LocalVariableInstruction ISTORE_2 = new ISTORE(2);
DInstructionConstants.java168 LocalVariableInstruction ISTORE_0 = new ISTORE(0);
169 LocalVariableInstruction ISTORE_1 = new ISTORE(1);
170 LocalVariableInstruction ISTORE_2 = new ISTORE(2);
DVisitor.java138 void visitISTORE( ISTORE obj ); in visitISTORE()
DEmptyVisitor.java208 public void visitISTORE( final ISTORE obj ) { in visitISTORE()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DStringSwitchJavacFilterTest.java41 m.visitVarInsn(Opcodes.ISTORE, 2); in createFirstSwitch()
58 m.visitVarInsn(Opcodes.ISTORE, 2); in createFirstSwitch()
71 m.visitVarInsn(Opcodes.ISTORE, 2); in createFirstSwitch()
84 m.visitVarInsn(Opcodes.ISTORE, 2); in createFirstSwitch()
DKotlinDefaultArgumentsFilterTest.java39 m.visitVarInsn(Opcodes.ISTORE, 1); in createMethod()
DKotlinCoroutineFilterTest.java81 m.visitVarInsn(Opcodes.ISTORE, 3); in should_filter_suspending_lambdas_generated_by_Kotlin_1_3_30()
185 m.visitVarInsn(Opcodes.ISTORE, 3); in should_filter_suspending_lambdas()
/external/apache-commons-bcel/src/test/java/org/apache/bcel/util/
DInstructionFinderTest.java26 import org.apache.bcel.generic.ISTORE;
37 il.append(new ISTORE(3)); in testSearch()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DStringSwitchJavacFilter.java67 nextIsVar(Opcodes.ISTORE, "c"); in match()
83 nextIsVar(Opcodes.ISTORE, "c"); in match()
/external/apache-commons-bcel/src/examples/Mini/
DASTLetExpr.java24 import org.apache.bcel.generic.ISTORE;
167 il.append(new ISTORE(slot)); ASTFunDecl.pop(); in byte_code()
/external/javassist/src/main/javassist/bytecode/
DInstructionPrinter.java95 case ISTORE: in instructionString()
171 case ISTORE: in wide()
DOpcode.java169 int ISTORE = 54; field
DCodeAttribute.java520 else if (opcode < ISTORE) in shiftIndex()
528 shiftIndex0(ci, index, opcode, lessThan, delta, ISTORE_0, ISTORE); in shiftIndex()
DBytecode.java572 addOpcode(ISTORE); // istore in addIstore()
577 addOpcode(ISTORE); in addIstore()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
DProbeInserterTest.java131 pi.visitVarInsn(Opcodes.ISTORE, 3); in testVisitVarIns()
140 expectedVisitor.visitVarInsn(Opcodes.ISTORE, 4); in testVisitVarIns()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DMethodAnalyzerTest.java473 method.visitVarInsn(Opcodes.ISTORE, 2); in createTableSwitch()
482 method.visitVarInsn(Opcodes.ISTORE, 2); in createTableSwitch()
490 method.visitVarInsn(Opcodes.ISTORE, 2); in createTableSwitch()
610 method.visitVarInsn(Opcodes.ISTORE, 2); in createTableSwitchMerge()
/external/desugar/test/java/com/google/devtools/build/android/desugar/
DBug62060793TestDataGenerator.java45 import static org.objectweb.asm.Opcodes.ISTORE;
182 mv.visitVarInsn(ISTORE, 14); in createClass()
DBytecodeTypeInferenceTest.golden.txt385 ISTORE 3
391 ISTORE 4
456 ISTORE 3
462 ISTORE 4
501 ISTORE 7
507 ISTORE 8
744 ISTORE 2
765 ISTORE 2
786 ISTORE 2
799 ISTORE 2
[all …]
/external/kotlinx.atomicfu/atomicfu-transformer/src/main/kotlin/kotlinx/atomicfu/transformer/
DFlowAnalyzer.kt174 ISTORE, FSTORE -> { in executeOne()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
DInstructionFinder.java356 map.put("istore", precompile(Const.ISTORE_0, Const.ISTORE_3, Const.ISTORE));
DBCELFactory.java130 final String kind = (opcode < Const.ISTORE) ? "Load" : "Store"; in visitLocalVariableInstruction()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/
DConstants.java496 short ISTORE = 54; field

12