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/
DInstructionTransformer.java101 private static void jumboCheck(int oldIndex, int newIndex) { in jumboCheck() argument
102 if ((oldIndex <= 0xffff) && (newIndex > 0xffff)) { in jumboCheck()
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 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/
DRegisterSpecList.java313 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/
DSsaBasicBlock.java494 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()
DSsaMethod.java239 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/
DRopper.java1613 int newIndex = 0; in filterMoveReturnAddressInsns() local
1617 newInsns.set(newIndex++, insn); in filterMoveReturnAddressInsns()