HomeSort by relevance Sort by last modified time
    Searched refs:jumpOffsets (Results 1 - 25 of 26) sorted by null

1 2

  /external/proguard/src/proguard/classfile/instruction/
SwitchInstruction.java 32 public int[] jumpOffsets;
46 int[] jumpOffsets)
50 this.jumpOffsets = jumpOffsets;
63 this.jumpOffsets = switchInstruction.jumpOffsets;
81 return getName()+" ("+jumpOffsets.length+" offsets, default="+defaultOffset+")";
TableSwitchInstruction.java 52 int[] jumpOffsets)
58 this.jumpOffsets = jumpOffsets;
73 this.jumpOffsets = tableSwitchInstruction.jumpOffsets;
98 jumpOffsets = new int[highCase - lowCase + 1];
100 for (int index = 0; index < jumpOffsets.length; index++)
102 jumpOffsets[index] = readInt(code, offset); offset += 4;
124 writeInt(code, offset, jumpOffsets[index]); offset += 4;
LookUpSwitchInstruction.java 50 int[] jumpOffsets)
55 this.jumpOffsets = jumpOffsets;
69 this.jumpOffsets = lookUpSwitchInstruction.jumpOffsets;
94 jumpOffsets = new int[jumpOffsetCount];
99 jumpOffsets[index] = readInt(code, offset); offset += 4;
120 writeInt(code, offset, jumpOffsets[index]); offset += 4;
  /external/proguard/src/proguard/optimize/info/
BackwardBranchMarker.java 54 for (int index = 0; index < switchInstruction.jumpOffsets.length; index++)
56 markBackwardBranch(method, switchInstruction.jumpOffsets[index]);
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java     [all...]
  /external/proguard/src/proguard/optimize/peephole/
ReachableCodeMarker.java 175 switchInstruction.jumpOffsets);
202 private void markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets)
204 for (int index = 0; index < jumpOffsets.length; index++)
206 markCode(clazz, method, codeAttribute, offset + jumpOffsets[index]);
BranchTargetFinder.java 606 markBranches(offset, switchInstruction.jumpOffsets);
656 private void markBranches(int offset, int[] jumpOffsets)
658 for (int index = 0; index < jumpOffsets.length; index++)
660 markBranch(offset, jumpOffsets[index]);
InstructionSequenceReplacer.java 307 tableSwitchInstruction.jumpOffsets));
318 instructionSequenceMatcher.matchedJumpOffsets(offset, lookUpSwitchInstruction.jumpOffsets));
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 208 public int[] matchedJumpOffsets(int offset, int[] jumpOffsets)
210 int[] matchedJumpOffsets = new int[jumpOffsets.length];
212 for (int index = 0; index < jumpOffsets.length; index++)
215 jumpOffsets[index]);
326 tableSwitchInstruction.jumpOffsets,
327 ((TableSwitchInstruction)patternInstruction).jumpOffsets);
352 lookUpSwitchInstruction.jumpOffsets,
353 ((LookUpSwitchInstruction)patternInstruction).jumpOffsets);
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 231 int[] jumpOffsets = switchInstruction.jumpOffsets;
233 for (int index = 0; index < jumpOffsets.length; index++)
239 offset + jumpOffsets[index]);
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 735 int[] jumpOffsets = tableSwitchInstruction.jumpOffsets;
737 for (int index = 0; index < jumpOffsets.length; index++)
739 int jumpOffset = jumpOffsets[index];
757 int[] jumpOffsets = lookUpSwitchInstruction.jumpOffsets;
759 for (int index = 0; index < jumpOffsets.length; index++)
761 int jumpOffset = jumpOffsets[index];
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeComposer.java 571 switchInstruction.jumpOffsets);
732 private void updateJumpOffsets(int offset, int[] jumpOffsets)
734 for (int index = 0; index < jumpOffsets.length; index++)
736 jumpOffsets[index] = newBranchOffset(offset, jumpOffsets[index]);
    [all...]
CodeAttributeEditor.java 877 tableSwitchInstruction.jumpOffsets,
899 lookUpSwitchInstruction.jumpOffsets,
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java     [all...]
  /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.11/
proguard-base-4.11.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 
  /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.9/
proguard-base-4.9.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.repository.tools_2.1.0.v20130327-2119.jar 
  /external/proguard/lib/
proguard.jar 

Completed in 294 milliseconds

1 2