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

/dalvik/dx/src/com/android/dx/io/instructions/
H A DZeroRegisterDecodedInstruction.java39 public DecodedInstruction withIndex(int newIndex) { argument
41 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DOneRegisterDecodedInstruction.java50 public DecodedInstruction withIndex(int newIndex) { argument
52 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DRegisterRangeDecodedInstruction.java55 public DecodedInstruction withIndex(int newIndex) { argument
57 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DTwoRegisterDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { argument
61 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DPackedSwitchPayloadDecodedInstruction.java59 public DecodedInstruction withIndex(int newIndex) { argument
H A DFiveRegisterDecodedInstruction.java86 public DecodedInstruction withIndex(int newIndex) { argument
88 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFourRegisterDecodedInstruction.java77 public DecodedInstruction withIndex(int newIndex) { argument
79 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DThreeRegisterDecodedInstruction.java68 public DecodedInstruction withIndex(int newIndex) { argument
70 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DSparseSwitchPayloadDecodedInstruction.java63 public DecodedInstruction withIndex(int newIndex) { argument
H A DFillArrayDataPayloadDecodedInstruction.java97 public DecodedInstruction withIndex(int newIndex) { argument
H A DDecodedInstruction.java477 public abstract DecodedInstruction withIndex(int newIndex); argument
/dalvik/dx/src/com/android/dx/merge/
H A DInstructionTransformer.java106 private static void jumboCheck(boolean isJumbo, int newIndex) { argument
107 if (!isJumbo && (newIndex > 0xffff)) {
108 throw new DexException("Cannot merge new index " + newIndex +
H A DDexMerger.java342 abstract void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex); argument
386 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
387 indexMap.stringIds[oldIndex] = newIndex;
409 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
410 if (newIndex < 0 || newIndex > 0xffff) {
411 throw new IllegalArgumentException("type ID not in [0, 0xffff]: " + newIndex);
413 indexMap.typeIds[oldIndex] = (short) newIndex;
432 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
452 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
[all...]
/dalvik/dx/src/com/android/dx/rop/code/
H A DRegisterSpecList.java312 int newIndex = 0;
315 result.set0(newIndex, get0(oldIndex));
316 newIndex++;
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java491 * @param newIndex index of new successor block
493 public void replaceSuccessor(int oldIndex, int newIndex) { argument
494 if (oldIndex == newIndex) {
499 successors.set(newIndex);
502 primarySuccessor = newIndex;
507 successorList.set(i, newIndex);
514 parent.getBlocks().get(newIndex).predecessors.set(index);
H A DSsaMethod.java238 int newIndex = blocks.size();
239 SsaBasicBlock newBlock = new SsaBasicBlock(newIndex, maxLabel++, this);
/dalvik/dx/src/com/android/dx/cf/code/
H A DRopper.java1627 int newIndex = 0;
1631 newInsns.set(newIndex++, insn);

Completed in 715 milliseconds