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

1 2 3

  /dalvik/dexgen/src/com/android/dexgen/rop/code/
RopMethod.java 21 import com.android.dexgen.util.IntList;
37 private IntList[] predecessors;
43 private IntList exitPredecessors;
93 public IntList labelToPredecessors(int label) {
98 IntList result = predecessors[label];
112 public IntList getExitPredecessors() {
153 IntList[] predecessors = new IntList[maxLabel];
154 IntList exitPredecessors = new IntList(10)
    [all...]
SwitchInsn.java 22 import com.android.dexgen.util.IntList;
30 private final IntList cases;
42 RegisterSpecList sources, IntList cases) {
116 public IntList getCases() {
  /dalvik/dx/src/com/android/dx/rop/code/
RopMethod.java 21 import com.android.dx.util.IntList;
37 private IntList[] predecessors;
43 private IntList exitPredecessors;
93 public IntList labelToPredecessors(int label) {
98 IntList result = predecessors[label];
112 public IntList getExitPredecessors() {
153 IntList[] predecessors = new IntList[maxLabel];
154 IntList exitPredecessors = new IntList(10)
    [all...]
SwitchInsn.java 22 import com.android.dx.util.IntList;
30 private final IntList cases;
42 RegisterSpecList sources, IntList cases) {
116 public IntList getCases() {
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
RopMethod.java 21 import com.android.dx.util.IntList;
37 private IntList[] predecessors;
43 private IntList exitPredecessors;
93 public IntList labelToPredecessors(int label) {
98 IntList result = predecessors[label];
112 public IntList getExitPredecessors() {
153 IntList[] predecessors = new IntList[maxLabel];
154 IntList exitPredecessors = new IntList(10)
    [all...]
SwitchInsn.java 22 import com.android.dx.util.IntList;
30 private final IntList cases;
42 RegisterSpecList sources, IntList cases) {
116 public IntList getCases() {
  /dalvik/dexgen/src/com/android/dexgen/util/
IntList.java 24 public final class IntList extends MutabilityControl {
26 public static final IntList EMPTY = new IntList(0);
46 public static IntList makeImmutable(int value) {
47 IntList result = new IntList(1);
61 public static IntList makeImmutable(int value0, int value1) {
62 IntList result = new IntList(2);
74 public IntList() {
    [all...]
  /dalvik/dx/src/com/android/dx/util/
IntList.java 24 public final class IntList extends MutabilityControl {
26 public static final IntList EMPTY = new IntList(0);
46 public static IntList makeImmutable(int value) {
47 IntList result = new IntList(1);
61 public static IntList makeImmutable(int value0, int value1) {
62 IntList result = new IntList(2);
74 public IntList() {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
IntList.java 24 public final class IntList extends MutabilityControl {
26 public static final IntList EMPTY = new IntList(0);
46 public static IntList makeImmutable(int value) {
47 IntList result = new IntList(1);
61 public static IntList makeImmutable(int value0, int value1) {
62 IntList result = new IntList(2);
74 public IntList() {
    [all...]
  /dalvik/dx/junit-tests/com/android/dx/util/
IntListTest.java 24 IntList list = new IntList(sz);
42 IntList list = new IntList(2);
52 IntList list = new IntList(2);
  /dalvik/dx/src/com/android/dx/cf/code/
SwitchList.java 19 import com.android.dx.util.IntList;
29 private final IntList values;
36 private final IntList targets;
48 this.values = new IntList(size);
49 this.targets = new IntList(size + 1);
107 public IntList getTargets() {
116 public IntList getValues() {
Frame.java 23 import com.android.dx.util.IntList;
39 private final IntList subroutines;
48 this(locals, stack, IntList.EMPTY);
60 ExecutionStack stack, IntList subroutines) {
148 public IntList getSubroutines() {
187 IntList newSubroutines;
215 IntList resultSubroutines;
242 private IntList mergeSubroutineLists(IntList otherSubroutines) {
247 IntList resultSubroutines = new IntList()
    [all...]
ByteBlock.java 20 import com.android.dx.util.IntList;
37 private final IntList successors;
55 public ByteBlock(int label, int start, int end, IntList successors,
133 public IntList getSuccessors() {
Ropper.java 28 import com.android.dx.util.IntList;
101 private final ArrayList<IntList> resultSubroutines;
195 IntList getSuccessors() {
196 IntList successors = new IntList(callerBlocks.size());
294 new ArrayList<IntList>(blocks.size() * 2 + 10);
482 private void addBlock(BasicBlock block, IntList subroutines) {
503 private boolean addOrReplaceBlock(BasicBlock block, IntList subroutines) {
542 IntList subroutines) {
575 IntList successors = block.getSuccessors()
    [all...]
ByteCatchList.java 23 import com.android.dx.util.IntList;
162 public IntList toTargetList(int noException) {
176 return IntList.makeImmutable(noException);
182 return IntList.EMPTY;
185 IntList result = new IntList(sz + (hasDefault ? 1 : 0));
  /dalvik/dexgen/src/com/android/dexgen/rop/
ByteBlock.java 20 import com.android.dexgen.util.IntList;
37 private final IntList successors;
55 public ByteBlock(int label, int start, int end, IntList successors,
133 public IntList getSuccessors() {
ByteCatchList.java 23 import com.android.dexgen.util.IntList;
162 public IntList toTargetList(int noException) {
176 return IntList.makeImmutable(noException);
182 return IntList.EMPTY;
185 IntList result = new IntList(sz + (hasDefault ? 1 : 0));
  /dalvik/dx/src/com/android/dx/ssa/
BasicRegisterMapper.java 21 import com.android.dx.util.IntList;
29 private IntList oldToNew;
40 oldToNew = new IntList(countOldRegisters);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
BasicRegisterMapper.java 21 import com.android.dx.util.IntList;
29 private IntList oldToNew;
40 oldToNew = new IntList(countOldRegisters);
  /dalvik/dx/src/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 27 import com.android.dx.util.IntList;
74 IntList preds = ropMethod.labelToPredecessors(b.getLabel());
90 IntList toCombine = new IntList();
140 private void combineBlocks(int alphaLabel, IntList betaLabels) {
146 IntList preds = ropMethod.labelToPredecessors(bb.getLabel());
165 IntList newSuccessors = block.getSuccessors().mutableCopy();
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 27 import com.android.dx.util.IntList;
74 IntList preds = ropMethod.labelToPredecessors(b.getLabel());
90 IntList toCombine = new IntList();
140 private void combineBlocks(int alphaLabel, IntList betaLabels) {
146 IntList preds = ropMethod.labelToPredecessors(bb.getLabel());
165 IntList newSuccessors = block.getSuccessors().mutableCopy();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
SwitchData.java 23 import com.android.dexgen.util.IntList;
38 private final IntList cases;
61 IntList cases, CodeAddress[] targets) {
209 private static long packedCodeSize(IntList cases) {
225 private static long sparseCodeSize(IntList cases) {
238 private static boolean shouldPack(IntList cases) {
  /dalvik/dx/src/com/android/dx/dex/code/
SwitchData.java 24 import com.android.dx.util.IntList;
39 private final IntList cases;
62 IntList cases, CodeAddress[] targets) {
210 private static long packedCodeSize(IntList cases) {
226 private static long sparseCodeSize(IntList cases) {
239 private static boolean shouldPack(IntList cases) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
SwitchData.java 24 import com.android.dx.util.IntList;
39 private final IntList cases;
62 IntList cases, CodeAddress[] targets) {
210 private static long packedCodeSize(IntList cases) {
226 private static long sparseCodeSize(IntList cases) {
239 private static boolean shouldPack(IntList cases) {
  /external/dexmaker/src/main/java/com/google/dexmaker/
Label.java 22 import com.android.dx.util.IntList;
77 IntList successors = new IntList();

Completed in 403 milliseconds

1 2 3