Home
last modified time | relevance | path

Searched refs:newIndex (Results 1 – 17 of 17) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
DZeroRegisterDecodedInstruction.java39 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
41 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DOneRegisterDecodedInstruction.java50 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
52 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DRegisterRangeDecodedInstruction.java55 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
57 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DTwoRegisterDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
61 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DThreeRegisterDecodedInstruction.java68 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
70 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DFourRegisterDecodedInstruction.java77 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
79 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DFiveRegisterDecodedInstruction.java86 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
88 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DPackedSwitchPayloadDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
DSparseSwitchPayloadDecodedInstruction.java63 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
DFillArrayDataPayloadDecodedInstruction.java97 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
DDecodedInstruction.java477 public abstract DecodedInstruction withIndex(int newIndex); in withIndex() argument
/dalvik/dx/src/com/android/dx/merge/
DDexMerger.java343 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 if (newIndex < 0 || newIndex > 0xffff) { in mergeTypeIds()
412 throw new IllegalArgumentException("type ID not in [0, 0xffff]: " + newIndex); in mergeTypeIds()
414 indexMap.typeIds[oldIndex] = (short) newIndex; in mergeTypeIds()
433 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeTypeLists() argument
453 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) { in mergeProtoIds() argument
454 if (newIndex < 0 || newIndex > 0xffff) { in mergeProtoIds()
[all …]
DInstructionTransformer.java106 private static void jumboCheck(boolean isJumbo, int newIndex) { in jumboCheck() argument
107 if (!isJumbo && (newIndex > 0xffff)) { in jumboCheck()
108 throw new DexException("Cannot merge new index " + newIndex + in jumboCheck()
/dalvik/dx/src/com/android/dx/rop/code/
DRegisterSpecList.java312 int newIndex = 0; in subset() local
315 result.set0(newIndex, get0(oldIndex)); in subset()
316 newIndex++; in subset()
/dalvik/dx/src/com/android/dx/ssa/
DSsaBasicBlock.java493 public void replaceSuccessor(int oldIndex, int newIndex) { in replaceSuccessor() argument
494 if (oldIndex == newIndex) { in replaceSuccessor()
499 successors.set(newIndex); in replaceSuccessor()
502 primarySuccessor = newIndex; in replaceSuccessor()
507 successorList.set(i, newIndex); in replaceSuccessor()
514 parent.getBlocks().get(newIndex).predecessors.set(index); in replaceSuccessor()
DSsaMethod.java238 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/
DRopper.java1627 int newIndex = 0; in filterMoveReturnAddressInsns() local
1631 newInsns.set(newIndex++, insn); in filterMoveReturnAddressInsns()