/dalvik/dx/src/com/android/dx/io/instructions/ |
D | InvokePolymorphicRangeDecodedInstruction.java | 56 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex() argument 60 newIndex, in withProtoIndex() 68 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
|
D | InvokePolymorphicDecodedInstruction.java | 48 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 55 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex() argument 57 getFormat(), getOpcode(), newIndex, getIndexType(), newProtoIndex, registers); in withProtoIndex()
|
D | ZeroRegisterDecodedInstruction.java | 41 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 43 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | OneRegisterDecodedInstruction.java | 53 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 55 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | RegisterRangeDecodedInstruction.java | 58 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 60 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | TwoRegisterDecodedInstruction.java | 63 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 65 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | ThreeRegisterDecodedInstruction.java | 73 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 75 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | FourRegisterDecodedInstruction.java | 83 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 85 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | FiveRegisterDecodedInstruction.java | 93 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument 95 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
|
D | PackedSwitchPayloadDecodedInstruction.java | 61 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
|
D | SparseSwitchPayloadDecodedInstruction.java | 65 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
|
D | FillArrayDataPayloadDecodedInstruction.java | 99 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
|
D | DecodedInstruction.java | 477 public abstract DecodedInstruction withIndex(int newIndex); in withIndex() argument 480 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex() argument
|
/dalvik/dx/src/com/android/dx/merge/ |
D | DexMerger.java | 355 abstract void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex); in updateIndex() argument 401 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeStringIds() argument 402 indexMap.stringIds[oldIndex] = newIndex; in mergeStringIds() 424 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeTypeIds() argument 425 if (newIndex < 0 || newIndex > 0xffff) { in mergeTypeIds() 426 throw new DexIndexOverflowException("type ID not in [0, 0xffff]: " + newIndex); in mergeTypeIds() 428 indexMap.typeIds[oldIndex] = (short) newIndex; in mergeTypeIds() 447 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeTypeLists() argument 467 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeProtoIds() argument 468 if (newIndex < 0 || newIndex > 0xffff) { in mergeProtoIds() [all …]
|
D | InstructionTransformer.java | 135 private static void jumboCheck(boolean isJumbo, int newIndex) { in jumboCheck() argument 136 if (!isJumbo && (newIndex > 0xffff)) { in jumboCheck() 137 throw new DexIndexOverflowException("Cannot merge new index " + newIndex + in jumboCheck()
|
/dalvik/dx/src/com/android/dx/rop/code/ |
D | RegisterSpecList.java | 315 int newIndex = 0; in subset() local 318 result.set0(newIndex, get0(oldIndex)); in subset() 319 newIndex++; in subset()
|
/dalvik/dx/src/com/android/dx/ssa/ |
D | SsaBasicBlock.java | 487 public void replaceSuccessor(int oldIndex, int newIndex) { in replaceSuccessor() argument 488 if (oldIndex == newIndex) { in replaceSuccessor() 493 successors.set(newIndex); in replaceSuccessor() 496 primarySuccessor = newIndex; in replaceSuccessor() 501 successorList.set(i, newIndex); in replaceSuccessor() 508 parent.getBlocks().get(newIndex).predecessors.set(index); in replaceSuccessor()
|
D | SsaMethod.java | 238 int newIndex = blocks.size(); in makeNewGotoBlock() local 239 SsaBasicBlock newBlock = new SsaBasicBlock(newIndex, maxLabel++, this); in makeNewGotoBlock()
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | Ropper.java | 1739 int newIndex = 0; in filterMoveReturnAddressInsns() local 1743 newInsns.set(newIndex++, insn); in filterMoveReturnAddressInsns()
|