Searched refs:lookUpSwitchInstruction (Results 1 - 9 of 9) sorted by relevance

/external/proguard/src/proguard/classfile/instruction/
H A DLookUpSwitchInstruction.java61 * @param lookUpSwitchInstruction the instruction to be copied.
64 public LookUpSwitchInstruction copy(LookUpSwitchInstruction lookUpSwitchInstruction) argument
66 this.opcode = lookUpSwitchInstruction.opcode;
67 this.defaultOffset = lookUpSwitchInstruction.defaultOffset;
68 this.cases = lookUpSwitchInstruction.cases;
69 this.jumpOffsets = lookUpSwitchInstruction.jumpOffsets;
/external/proguard/src/proguard/classfile/instruction/visitor/
H A DInstructionVisitor.java41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction); argument
H A DMultiInstructionVisitor.java124 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
128 instructionVisitors[index].visitLookUpSwitchInstruction(clazz, method, codeAttribute, offset, lookUpSwitchInstruction);
/external/proguard/src/proguard/optimize/peephole/
H A DInstructionSequenceReplacer.java269 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
272 new LookUpSwitchInstruction(lookUpSwitchInstruction.opcode,
273 instructionSequenceMatcher.matchedBranchOffset(offset, lookUpSwitchInstruction.defaultOffset),
274 instructionSequenceMatcher.matchedArguments(lookUpSwitchInstruction.cases),
275 instructionSequenceMatcher.matchedJumpOffsets(offset, lookUpSwitchInstruction.jumpOffsets));
/external/proguard/src/proguard/classfile/util/
H A DInstructionSequenceMatcher.java300 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
306 matchingOpcodes(lookUpSwitchInstruction, patternInstruction) &&
308 lookUpSwitchInstruction.defaultOffset,
310 matchingArguments(lookUpSwitchInstruction.cases,
313 lookUpSwitchInstruction.jumpOffsets,
322 lookUpSwitchInstruction);
H A DSimplifiedVisitor.java518 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
520 visitAnySwitchInstruction(clazz, method, codeAttribute, offset, lookUpSwitchInstruction);
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeEditor.java803 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
806 lookUpSwitchInstruction.defaultOffset = remapBranchOffset(offset,
807 lookUpSwitchInstruction.defaultOffset);
811 lookUpSwitchInstruction.jumpOffsets);
818 lookUpSwitchInstruction);
820 newOffset += lookUpSwitchInstruction.length(newOffset);
/external/proguard/src/proguard/classfile/visitor/
H A DClassPrinter.java652 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
654 println(lookUpSwitchInstruction.toString(offset));
658 int[] cases = lookUpSwitchInstruction.cases;
659 int[] jumpOffsets = lookUpSwitchInstruction.jumpOffsets;
667 int defaultOffset = lookUpSwitchInstruction.defaultOffset;
/external/proguard/src/proguard/evaluation/
H A DProcessor.java884 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction) argument
892 offset + lookUpSwitchInstruction.defaultOffset);
894 for (int index = 0; index < lookUpSwitchInstruction.jumpOffsets.length; index++)
897 lookUpSwitchInstruction.cases[index]));
900 offset + lookUpSwitchInstruction.jumpOffsets[index],

Completed in 111 milliseconds