HomeSort by relevance Sort by last modified time
    Searched refs:TableSwitchInstruction (Results 1 - 24 of 24) sorted by null

  /external/proguard/src/proguard/classfile/instruction/
TableSwitchInstruction.java 33 public class TableSwitchInstruction extends SwitchInstruction
40 * Creates an uninitialized TableSwitchInstruction.
42 public TableSwitchInstruction() {}
46 * Creates a new TableSwitchInstruction with the given arguments.
48 public TableSwitchInstruction(byte opcode,
64 * @param tableSwitchInstruction the instruction to be copied.
67 public TableSwitchInstruction copy(TableSwitchInstruction tableSwitchInstruction)
69 this.opcode = tableSwitchInstruction.opcode
    [all...]
InstructionFactory.java 282 instruction = new TableSwitchInstruction();
  /external/proguard/src/proguard/classfile/instruction/visitor/
InstructionVisitor.java 40 public void visitTableSwitchInstruction( Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction);
MultiInstructionVisitor.java 116 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
120 instructionVisitors[index].visitTableSwitchInstruction(clazz, method, codeAttribute, offset, tableSwitchInstruction);
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 311 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
317 matchingOpcodes(tableSwitchInstruction, patternInstruction) &&
319 tableSwitchInstruction.defaultOffset,
320 ((TableSwitchInstruction)patternInstruction).defaultOffset) &&
321 matchingArguments(tableSwitchInstruction.lowCase,
322 ((TableSwitchInstruction)patternInstruction).lowCase) &&
323 matchingArguments(tableSwitchInstruction.highCase,
324 ((TableSwitchInstruction)patternInstruction).highCase) &&
326 tableSwitchInstruction.jumpOffsets
    [all...]
SimplifiedVisitor.java 618 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
620 visitAnySwitchInstruction(clazz, method, codeAttribute, offset, tableSwitchInstruction);
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 299 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
302 new TableSwitchInstruction(tableSwitchInstruction.opcode,
303 instructionSequenceMatcher.matchedBranchOffset(offset, tableSwitchInstruction.defaultOffset),
304 instructionSequenceMatcher.matchedArgument(tableSwitchInstruction.lowCase),
305 instructionSequenceMatcher.matchedArgument(tableSwitchInstruction.highCase),
307 tableSwitchInstruction.jumpOffsets));
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java 356 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
359 replaceBranchInstruction(clazz, offset, tableSwitchInstruction);
367 tableSwitchInstruction);
372 cleanUpSwitchInstruction(clazz, offset, tableSwitchInstruction);
374 trimSwitchInstruction(clazz, offset, tableSwitchInstruction);
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeEditor.java 869 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
872 tableSwitchInstruction.defaultOffset =
873 newBranchOffset(offset, tableSwitchInstruction.defaultOffset, newOffset);
877 tableSwitchInstruction.jumpOffsets,
885 tableSwitchInstruction);
887 newOffset += tableSwitchInstruction.length(newOffset);
    [all...]
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 729 public void visitTableSwitchInstruction(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, TableSwitchInstruction tableSwitchInstruction)
731 println(tableSwitchInstruction.toString(offset));
735 int[] jumpOffsets = tableSwitchInstruction.jumpOffsets;
740 println(Integer.toString(tableSwitchInstruction.lowCase + index) + ": offset = " + jumpOffset + ", target = " + (offset + jumpOffset));
743 int defaultOffset = tableSwitchInstruction.defaultOffset;
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java     [all...]
  /external/annotation-tools/asmx/test/lib/
serp.jar 
  /external/annotation-tools/asmx/
serp.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /prebuilts/gradle-plugin/net/sf/proguard/proguard-base/5.3.3/
proguard-base-5.3.3.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.1/
proguard-base-5.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.1/
proguard-base-5.3.1.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/5.3.2/
proguard-base-5.3.2.jar 
  /prebuilts/tools/common/offline-m2/net/sf/proguard/proguard-base/5.2.1/
proguard-base-5.2.1.jar 

Completed in 485 milliseconds