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

/dalvik/dx/src/com/android/dx/io/instructions/
H A DZeroRegisterDecodedInstruction.java41 public DecodedInstruction withIndex(int newIndex) { argument
43 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DInvokePolymorphicRangeDecodedInstruction.java56 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { argument
60 newIndex,
68 public DecodedInstruction withIndex(int newIndex) { argument
H A DOneRegisterDecodedInstruction.java53 public DecodedInstruction withIndex(int newIndex) { argument
55 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DRegisterRangeDecodedInstruction.java58 public DecodedInstruction withIndex(int newIndex) { argument
60 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DTwoRegisterDecodedInstruction.java63 public DecodedInstruction withIndex(int newIndex) { argument
65 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFiveRegisterDecodedInstruction.java93 public DecodedInstruction withIndex(int newIndex) { argument
95 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DFourRegisterDecodedInstruction.java83 public DecodedInstruction withIndex(int newIndex) { argument
85 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DThreeRegisterDecodedInstruction.java73 public DecodedInstruction withIndex(int newIndex) { argument
75 getFormat(), getOpcode(), newIndex, getIndexType(),
H A DPackedSwitchPayloadDecodedInstruction.java61 public DecodedInstruction withIndex(int newIndex) { argument
H A DSparseSwitchPayloadDecodedInstruction.java65 public DecodedInstruction withIndex(int newIndex) { argument
H A DInvokePolymorphicDecodedInstruction.java48 public DecodedInstruction withIndex(int newIndex) { argument
55 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { argument
57 getFormat(), getOpcode(), newIndex, getIndexType(), newProtoIndex, registers);
H A DFillArrayDataPayloadDecodedInstruction.java99 public DecodedInstruction withIndex(int newIndex) { argument
H A DDecodedInstruction.java477 public abstract DecodedInstruction withIndex(int newIndex); argument
480 public DecodedInstruction withProtoIndex(int newIndex, int newProtoIndex) { argument
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java355 abstract void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex); argument
401 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
402 indexMap.stringIds[oldIndex] = newIndex;
424 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
425 if (newIndex < 0 || newIndex > 0xffff) {
426 throw new DexIndexOverflowException("type ID not in [0, 0xffff]: " + newIndex);
428 indexMap.typeIds[oldIndex] = (short) newIndex;
447 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
467 @Override void updateIndex(int offset, IndexMap indexMap, int oldIndex, int newIndex) {
[all...]
H A DInstructionTransformer.java135 private static void jumboCheck(boolean isJumbo, int newIndex) { argument
136 if (!isJumbo && (newIndex > 0xffff)) {
137 throw new DexIndexOverflowException("Cannot merge new index " + newIndex +
/dalvik/dx/src/com/android/dx/rop/code/
H A DRegisterSpecList.java315 int newIndex = 0;
318 result.set0(newIndex, get0(oldIndex));
319 newIndex++;
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaBasicBlock.java485 * @param newIndex index of new successor block
487 public void replaceSuccessor(int oldIndex, int newIndex) { argument
488 if (oldIndex == newIndex) {
493 successors.set(newIndex);
496 primarySuccessor = newIndex;
501 successorList.set(i, newIndex);
508 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.java1739 int newIndex = 0;
1743 newInsns.set(newIndex++, insn);

Completed in 592 milliseconds