HomeSort by relevance Sort by last modified time
    Searched refs:IntList (Results 26 - 50 of 66) sorted by null

12 3

  /dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlock.java 21 import com.android.dexgen.util.IntList;
38 private final IntList successors;
59 public BasicBlock(int label, InsnList insns, IntList successors,
160 public IntList getSuccessors() {
LocalVariableExtractor.java 20 import com.android.dexgen.util.IntList;
177 IntList successors = block.getSuccessors();
BasicBlockList.java 22 import com.android.dexgen.util.IntList;
232 IntList successors = block.getSuccessors();
269 IntList succ1 = block1.getSuccessors();
270 IntList succ2 = block2.getSuccessors();
  /dalvik/dx/src/com/android/dx/rop/code/
BasicBlock.java 21 import com.android.dx.util.IntList;
38 private final IntList successors;
59 public BasicBlock(int label, InsnList insns, IntList successors,
160 public IntList getSuccessors() {
LocalVariableExtractor.java 20 import com.android.dx.util.IntList;
177 IntList successors = block.getSuccessors();
BasicBlockList.java 22 import com.android.dx.util.IntList;
231 IntList successors = block.getSuccessors();
267 IntList succ1 = block1.getSuccessors();
268 IntList succ2 = block2.getSuccessors();
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlock.java 21 import com.android.dx.util.IntList;
38 private final IntList successors;
59 public BasicBlock(int label, InsnList insns, IntList successors,
160 public IntList getSuccessors() {
LocalVariableExtractor.java 20 import com.android.dx.util.IntList;
177 IntList successors = block.getSuccessors();
BasicBlockList.java 22 import com.android.dx.util.IntList;
231 IntList successors = block.getSuccessors();
267 IntList succ1 = block1.getSuccessors();
268 IntList succ2 = block2.getSuccessors();
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 25 import com.android.dx.util.IntList;
59 private final IntList[] targetLists;
109 targetLists = new IntList[sz];
132 targetLists[offset] = IntList.EMPTY;
191 targetLists[offset] = IntList.EMPTY;
220 targetLists[offset] = IntList.makeImmutable(target);
237 targetLists[offset] = IntList.makeImmutable(next, target);
288 IntList targets = null;
301 targets = IntList.makeImmutable(next);
  /dalvik/dexgen/src/com/android/dexgen/util/
LabeledList.java 30 private final IntList labelToIndex;
36 labelToIndex = new IntList(size);
ListIntSet.java 27 final IntList ints;
33 ints = new IntList();
  /dalvik/dx/src/com/android/dx/util/
LabeledList.java 29 private final IntList labelToIndex;
35 labelToIndex = new IntList(size);
ListIntSet.java 27 final IntList ints;
33 ints = new IntList();
  /external/dexmaker/src/dx/java/com/android/dx/util/
LabeledList.java 29 private final IntList labelToIndex;
35 labelToIndex = new IntList(size);
ListIntSet.java 27 final IntList ints;
33 ints = new IntList();
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableExtractor.java 21 import com.android.dx.util.IntList;
193 IntList successors = block.getSuccessorList();
SsaBasicBlock.java 31 import com.android.dx.util.IntList;
63 private IntList successorList;
129 this.successorList = new IntList();
357 public IntList getSuccessorList() {
391 public IntList getRopLabelSuccessorList() {
392 IntList result = new IntList(successorList.size());
    [all...]
SsaMethod.java 29 import com.android.dx.util.IntList;
136 IntList labelList) {
147 * Builds an IntList of block indices from a basic block list and a list
152 * @return IntList of block indices
154 public static IntList indexListFromLabelList(BasicBlockList ropBlocks,
155 IntList labelList) {
157 IntList result = new IntList(labelList.size());
SsaRenamer.java 26 import com.android.dx.util.IntList;
92 private IntList ssaRegToRopReg;
116 ssaRegToRopReg = new IntList(ropRegCount);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LocalVariableExtractor.java 21 import com.android.dx.util.IntList;
194 IntList successors = block.getSuccessorList();
SsaBasicBlock.java 31 import com.android.dx.util.IntList;
64 private IntList successorList;
130 this.successorList = new IntList();
358 public IntList getSuccessorList() {
392 public IntList getRopLabelSuccessorList() {
393 IntList result = new IntList(successorList.size());
    [all...]
SsaMethod.java 29 import com.android.dx.util.IntList;
137 IntList labelList) {
148 * Builds an IntList of block indices from a basic block list and a list
153 * @return IntList of block indices
155 public static IntList indexListFromLabelList(BasicBlockList ropBlocks,
156 IntList labelList) {
158 IntList result = new IntList(labelList.size());
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 43 import com.android.dx.util.IntList;
243 IntList successors = bb.getSuccessors();
309 IntList preds = rmeth.labelToPredecessors(label);
326 IntList successors = bb.getSuccessors();
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 34 import com.android.dx.util.IntList;
298 IntList successorList = block.getRopLabelSuccessorList();
313 successorList = IntList.EMPTY;

Completed in 991 milliseconds

12 3