Searched refs:oldInstructionOffset (Results 1 - 2 of 2) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeComposer.java185 * @param oldInstructionOffset the old offset of the instruction, to which
190 public void appendInstruction(int oldInstructionOffset, argument
200 println("["+codeLength+"] <- ", instruction.toString(oldInstructionOffset));
209 oldInstructionOffsets[codeLength] = oldInstructionOffset;
212 instructionOffsetMap[level][oldInstructionOffset] = codeLength;
230 * @param oldInstructionOffset the old offset of the label, to which
234 public void appendLabel(int oldInstructionOffset) argument
238 println("["+codeLength+"] <- ", "[" + oldInstructionOffset + "] (label)");
245 oldInstructionOffsets[codeLength] = oldInstructionOffset;
248 instructionOffsetMap[level][oldInstructionOffset]
766 newInstructionOffset(int oldInstructionOffset) argument
788 remappableExceptionHandler(int oldInstructionOffset) argument
[all...]
H A DCodeAttributeEditor.java1066 private void newJumpOffsets(int oldInstructionOffset, argument
1072 oldJumpOffsets[index] = newBranchOffset(oldInstructionOffset,
1084 private int newBranchOffset(int oldInstructionOffset, argument
1087 return newInstructionOffset(oldInstructionOffset + oldBranchOffset) -
1088 newInstructionOffset(oldInstructionOffset);
1096 private int newBranchOffset(int oldInstructionOffset, argument
1100 return newInstructionOffset(oldInstructionOffset + oldBranchOffset) -
1109 private int newInstructionOffset(int oldInstructionOffset) argument
1111 if (oldInstructionOffset < 0 ||
1112 oldInstructionOffset > codeLengt
[all...]

Completed in 78 milliseconds