Searched refs:lookUpSwitchInstruction (Results 1 - 9 of 9) sorted by relevance
/external/proguard/src/proguard/classfile/instruction/ |
H A D | LookUpSwitchInstruction.java | 61 * @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 D | InstructionVisitor.java | 41 public void visitLookUpSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, LookUpSwitchInstruction lookUpSwitchInstruction); argument
|
H A D | MultiInstructionVisitor.java | 124 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 D | InstructionSequenceReplacer.java | 269 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 D | InstructionSequenceMatcher.java | 300 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 D | SimplifiedVisitor.java | 518 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 D | CodeAttributeEditor.java | 803 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 D | ClassPrinter.java | 652 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 D | Processor.java | 884 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