Searched defs:jumpOffsets (Results 1 - 11 of 11) sorted by relevance

/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java32 public int[] jumpOffsets; field in class:SwitchInstruction
46 int[] jumpOffsets)
50 this.jumpOffsets = jumpOffsets;
63 this.jumpOffsets = switchInstruction.jumpOffsets;
81 return getName()+" ("+jumpOffsets.length+" offsets, default="+defaultOffset+")";
44 SwitchInstruction(byte opcode, int defaultOffset, int[] jumpOffsets) argument
H A DLookUpSwitchInstruction.java50 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;
47 LookUpSwitchInstruction(byte opcode, int defaultOffset, int[] cases, int[] jumpOffsets) argument
H A DTableSwitchInstruction.java52 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;
48 TableSwitchInstruction(byte opcode, int defaultOffset, int lowCase, int highCase, int[] jumpOffsets) argument
/external/proguard/src/proguard/optimize/peephole/
H A DReachableCodeMarker.java176 switchInstruction.jumpOffsets);
203 private void markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets) argument
205 for (int index = 0; index < jumpOffsets.length; index++)
207 markCode(clazz, method, codeAttribute, offset + jumpOffsets[index]);
H A DBranchTargetFinder.java581 switchInstruction.jumpOffsets);
616 private void markBranchTargets(int offset, int[] jumpOffsets) argument
618 for (int index = 0; index < jumpOffsets.length; index++)
620 markBranchTarget(offset, jumpOffsets[index]);
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeComposer.java475 switchInstruction.jumpOffsets);
626 private void remapJumpOffsets(int offset, int[] jumpOffsets) argument
628 for (int index = 0; index < jumpOffsets.length; index++)
630 jumpOffsets[index] = remapBranchOffset(offset, jumpOffsets[index]);
H A DCodeAttributeEditor.java790 tableSwitchInstruction.jumpOffsets);
811 lookUpSwitchInstruction.jumpOffsets);
939 private void remapJumpOffsets(int offset, int[] jumpOffsets) argument
941 for (int index = 0; index < jumpOffsets.length; index++)
943 jumpOffsets[index] = remapBranchOffset(offset, jumpOffsets[index]);
/external/proguard/src/proguard/classfile/util/
H A DInstructionSequenceMatcher.java169 public int[] matchedJumpOffsets(int offset, int[] jumpOffsets) argument
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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 1768 milliseconds