Home
last modified time | relevance | path

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

/dalvik/dx/src/com/android/dx/io/instructions/
DInvokePolymorphicRangeDecodedInstruction.java56 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { in withProtoIndex() argument
60 newIndex, in withProtoIndex()
68 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
DInvokePolymorphicDecodedInstruction.java48 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()
DZeroRegisterDecodedInstruction.java41 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
43 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DOneRegisterDecodedInstruction.java53 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
55 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DRegisterRangeDecodedInstruction.java58 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
60 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DTwoRegisterDecodedInstruction.java63 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
65 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DThreeRegisterDecodedInstruction.java73 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
75 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DFourRegisterDecodedInstruction.java83 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
85 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DFiveRegisterDecodedInstruction.java93 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
95 getFormat(), getOpcode(), newIndex, getIndexType(), in withIndex()
DPackedSwitchPayloadDecodedInstruction.java61 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
DSparseSwitchPayloadDecodedInstruction.java65 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
DFillArrayDataPayloadDecodedInstruction.java99 public DecodedInstruction withIndex(int newIndex) { in withIndex() argument
DDecodedInstruction.java477 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/
DDexMerger.java355 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 …]
DInstructionTransformer.java135 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/
DRegisterSpecList.java315 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/
DSsaBasicBlock.java487 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()
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.java1739 int newIndex = 0; in filterMoveReturnAddressInsns() local
1743 newInsns.set(newIndex++, insn); in filterMoveReturnAddressInsns()