Searched defs:jumpOffsets (Results 1 - 10 of 10) 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.java175 switchInstruction.jumpOffsets);
202 private void markBranchTargets(Clazz clazz, Method method, CodeAttribute codeAttribute, int offset, int[] jumpOffsets) argument
204 for (int index = 0; index < jumpOffsets.length; index++)
206 markCode(clazz, method, codeAttribute, offset + jumpOffsets[index]);
H A DBranchTargetFinder.java606 markBranches(offset, switchInstruction.jumpOffsets);
656 private void markBranches(int offset, int[] jumpOffsets) argument
658 for (int index = 0; index < jumpOffsets.length; index++)
660 markBranch(offset, jumpOffsets[index]);
/external/proguard/src/proguard/classfile/editor/
H A DCodeAttributeComposer.java571 switchInstruction.jumpOffsets);
732 private void updateJumpOffsets(int offset, int[] jumpOffsets) argument
734 for (int index = 0; index < jumpOffsets.length; index++)
736 jumpOffsets[index] = newBranchOffset(offset, jumpOffsets[index]);
/external/proguard/src/proguard/classfile/util/
H A DInstructionSequenceMatcher.java208 public int[] matchedJumpOffsets(int offset, int[] jumpOffsets) argument
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/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/optimize/WriteOnlyFieldFilter.class WriteOnlyFieldFilter.java package proguard ...

Completed in 167 milliseconds