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

12 3

  /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,
161 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/tensorflow/tensorflow/lite/toco/
args.h 34 struct IntList {
82 class Arg<toco::IntList> final {
95 const toco::IntList& value() const { return parsed_value_; }
98 toco::IntList parsed_value_;
139 Arg<toco::IntList> input_shape;
  /dalvik/dx/src/com/android/dx/cf/code/
BasicBlocker.java 28 import com.android.dx.util.IntList;
62 private final IntList[] targetLists;
112 targetLists = new IntList[sz];
137 targetLists[offset] = IntList.EMPTY;
197 targetLists[offset] = IntList.EMPTY;
229 targetLists[offset] = IntList.makeImmutable(target);
246 targetLists[offset] = IntList.makeImmutable(next, target);
299 IntList targets = null;
312 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();
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/db/
AutofillDatabase.java 41 import static com.example.android.autofill.service.data.source.local.db.Converters.IntList;
96 IntList autofillTypes = new IntList(defaultFieldType.autofillTypes);
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/db/
AutofillDatabase.java 41 import static com.example.android.autofill.service.data.source.local.db.Converters.IntList;
96 IntList autofillTypes = new IntList(defaultFieldType.autofillTypes);
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
IntArrayList.java 33 import com.google.protobuf.Internal.IntList;
40 * An implementation of {@link IntList} on top of a primitive array.
44 final class IntArrayList extends AbstractProtobufList<Integer> implements IntList, RandomAccess {
114 public IntList mutableCopyWithCapacity(int capacity) {
GeneratedMessageLite.java 38 import com.google.protobuf.Internal.IntList;
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
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/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;
123 this.successorList = new IntList();
351 public IntList getSuccessorList() {
385 public IntList getRopLabelSuccessorList() {
386 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);
  /dalvik/dx/src/com/android/dx/command/dump/
BlockDumper.java 43 import com.android.dx.util.IntList;
237 IntList successors = bb.getSuccessors();
303 IntList preds = rmeth.labelToPredecessors(label);
320 IntList successors = bb.getSuccessors();
DotDumper.java 36 import com.android.dx.util.IntList;
145 IntList successors = bb.getSuccessors();
SsaDumper.java 33 import com.android.dx.util.IntList;
155 IntList succLabelList = block.getRopLabelSuccessorList();
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 34 import com.android.dx.util.IntList;
302 IntList successorList = block.getRopLabelSuccessorList();
317 successorList = IntList.EMPTY;
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
StdCatchBuilder.java 25 import com.android.dexgen.util.IntList;
218 IntList successors = block.getSuccessors();
  /dalvik/dx/src/com/android/dx/dex/code/
StdCatchBuilder.java 25 import com.android.dx.util.IntList;
220 IntList successors = block.getSuccessors();

Completed in 1384 milliseconds

12 3