Searched refs:ISTORE_0 (Results 1 – 12 of 12) sorted by relevance
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | ISTORE.java | 33 super(org.apache.bcel.Const.ISTORE, org.apache.bcel.Const.ISTORE_0); in ISTORE() 41 super(org.apache.bcel.Const.ISTORE, org.apache.bcel.Const.ISTORE_0, n); in ISTORE()
|
D | LocalVariableInstruction.java | 115 || ((_opcode >= Const.ISTORE_0) && (_opcode <= Const.ASTORE_3))) { in toString() 143 n = (_opcode - Const.ISTORE_0) % 4; in initFromFile()
|
D | Instruction.java | 278 case Const.ISTORE_0: in readInstruction()
|
D | InstructionConst.java | 168 public static final LocalVariableInstruction ISTORE_0 = new ISTORE(0); field in InstructionConst
|
D | InstructionConstants.java | 168 LocalVariableInstruction ISTORE_0 = new ISTORE(0); field
|
/external/javassist/src/main/javassist/bytecode/ |
D | Opcode.java | 170 int ISTORE_0 = 59; field
|
D | CodeAttribute.java | 522 else if (opcode < ISTORE_0) { in shiftIndex() 528 shiftIndex0(ci, index, opcode, lessThan, delta, ISTORE_0, ISTORE); in shiftIndex()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/ |
D | InstructionFinder.java | 356 map.put("istore", precompile(Const.ISTORE_0, Const.ISTORE_3, Const.ISTORE));
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/ |
D | Constants.java | 516 short ISTORE_0 = 59; field
|
D | Const.java | 775 public static final short ISTORE_0 = 59; field in Const
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | Tracer.java | 300 case Opcode.ISTORE_0 : in doOpcode54_95() 304 { int var = op - Opcode.ISTORE_0; in doOpcode54_95()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | Executor.java | 194 case ISTORE_0: in execute() 198 evalStore(Type.INTEGER, opcode - ISTORE_0, frame, subroutine); in execute()
|