HomeSort by relevance Sort by last modified time
    Searched refs:IntList (Results 26 - 50 of 67) 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;
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());
SsaRenamer.java 26 import com.android.dx.util.IntList;
93 private IntList ssaRegToRopReg;
117 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 44 import com.android.dx.util.IntList;
245 IntList successors = bb.getSuccessors();
311 IntList preds = rmeth.labelToPredecessors(label);
328 IntList successors = bb.getSuccessors();
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 34 import com.android.dx.util.IntList;
299 IntList successorList = block.getRopLabelSuccessorList();
314 successorList = IntList.EMPTY;

Completed in 251 milliseconds

12 3