/dalvik/dx/src/com/android/dx/io/instructions/ |
D | ZeroRegisterDecodedInstruction.java | 39 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 41 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | OneRegisterDecodedInstruction.java | 50 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 52 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | RegisterRangeDecodedInstruction.java | 55 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 57 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | TwoRegisterDecodedInstruction.java | 59 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 61 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | ThreeRegisterDecodedInstruction.java | 68 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 70 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | FourRegisterDecodedInstruction.java | 77 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 79 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | FiveRegisterDecodedInstruction.java | 86 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 88 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | PackedSwitchPayloadDecodedInstruction.java | 59 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
|
D | SparseSwitchPayloadDecodedInstruction.java | 63 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
|
D | FillArrayDataPayloadDecodedInstruction.java | 97 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
|
D | DecodedInstruction.java | 477 public abstract DecodedInstruction withIndex(int newIndex); in withIndex() argument
|
/dalvik/dx/src/com/android/dx/merge/ |
D | InstructionTransformer.java | 101 private static void jumboCheck(int oldIndex, int newIndex) { in jumboCheck() argument 102 if ((oldIndex <= 0xffff) && (newIndex > 0xffff)) { in jumboCheck()
|
D | DexMerger.java | 343 abstract void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex); in updateIndex() argument 387 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeStringIds() argument 388 indexMap.stringIds[oldIndex] = newIndex; in mergeStringIds() 410 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeTypeIds() argument 411 indexMap.typeIds[oldIndex] = (short) newIndex; in mergeTypeIds() 430 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeTypeLists() argument 450 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeProtoIds() argument 451 indexMap.protoIds[oldIndex] = (short) newIndex; in mergeProtoIds() 470 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeFieldIds() argument 471 indexMap.fieldIds[oldIndex] = (short) newIndex; in mergeFieldIds() [all …]
|
/dalvik/dx/src/com/android/dx/rop/code/ |
D | RegisterSpecList.java | 313 int newIndex = 0; in subset() local 316 result.set0(newIndex, get0(oldIndex)); in subset() 317 newIndex++; in subset()
|
/dalvik/dx/src/com/android/dx/ssa/ |
D | SsaBasicBlock.java | 494 public void replaceSuccessor(int oldIndex, int newIndex) { in replaceSuccessor() argument 495 if (oldIndex == newIndex) { in replaceSuccessor() 500 successors.set(newIndex); in replaceSuccessor() 503 primarySuccessor = newIndex; in replaceSuccessor() 508 successorList.set(i, newIndex); in replaceSuccessor() 515 parent.getBlocks().get(newIndex).predecessors.set(index); in replaceSuccessor()
|
D | SsaMethod.java | 239 int newIndex = blocks.size(); in makeNewGotoBlock() local 240 SsaBasicBlock newBlock = new SsaBasicBlock(newIndex, maxLabel++, this); in makeNewGotoBlock()
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | Ropper.java | 1613 int newIndex = 0; in filterMoveReturnAddressInsns() local 1617 newInsns.set(newIndex++, insn); in filterMoveReturnAddressInsns()
|