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

  /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/peephole/
ReachableCodeMarker.java 176 switchInstruction.jumpOffsets);
203 private void markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets)
205 for (int index = 0; index < jumpOffsets.length; index++)
207 markCode(clazz, method, codeAttribute, offset + jumpOffsets[index]);
BranchTargetFinder.java 581 switchInstruction.jumpOffsets);
616 private void markBranchTargets(int offset, int[] jumpOffsets)
618 for (int index = 0; index < jumpOffsets.length; index++)
620 markBranchTarget(offset, jumpOffsets[index]);
InstructionSequenceReplacer.java 264 instructionSequenceMatcher.matchedJumpOffsets(offset, tableSwitchInstruction.jumpOffsets));
275 instructionSequenceMatcher.matchedJumpOffsets(offset, lookUpSwitchInstruction.jumpOffsets));
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 169 public int[] matchedJumpOffsets(int offset, int[] jumpOffsets)
171 int[] matchedJumpOffsets = new int[jumpOffsets.length];
173 for (int index = 0; index < jumpOffsets.length; index++)
176 jumpOffsets[index]);
287 tableSwitchInstruction.jumpOffsets,
288 ((TableSwitchInstruction)patternInstruction).jumpOffsets);
313 lookUpSwitchInstruction.jumpOffsets,
314 ((LookUpSwitchInstruction)patternInstruction).jumpOffsets);
  /external/proguard/src/proguard/classfile/attribute/visitor/
StackSizeComputer.java 232 int[] jumpOffsets = switchInstruction.jumpOffsets;
234 for (int index = 0; index < jumpOffsets.length; index++)
240 offset + jumpOffsets[index]);
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 637 int[] jumpOffsets = tableSwitchInstruction.jumpOffsets;
639 for (int index = 0; index < jumpOffsets.length; index++)
641 int jumpOffset = jumpOffsets[index];
659 int[] jumpOffsets = lookUpSwitchInstruction.jumpOffsets;
661 for (int index = 0; index < jumpOffsets.length; index++)
663 int jumpOffset = jumpOffsets[index];
    [all...]
  /external/proguard/src/proguard/classfile/editor/
CodeAttributeComposer.java 475 switchInstruction.jumpOffsets);
626 private void remapJumpOffsets(int offset, int[] jumpOffsets)
628 for (int index = 0; index < jumpOffsets.length; index++)
630 jumpOffsets[index] = remapBranchOffset(offset, jumpOffsets[index]);
CodeAttributeEditor.java 790 tableSwitchInstruction.jumpOffsets);
811 lookUpSwitchInstruction.jumpOffsets);
    [all...]
  /external/proguard/src/proguard/optimize/evaluation/
EvaluationSimplifier.java     [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 

Completed in 105 milliseconds