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

1 2 3 4 5

  /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() {
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() {
  /dalvik/dx/src/com/android/dx/rop/code/
RopMethod.java 20 import com.android.dx.util.IntList;
36 private IntList[] predecessors;
42 private IntList exitPredecessors;
92 public IntList labelToPredecessors(int label) {
97 IntList result = predecessors[label];
111 public IntList getExitPredecessors() {
152 IntList[] predecessors = new IntList[maxLabel];
153 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() {
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() {
  /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...]
LabeledList.java 30 private final IntList labelToIndex;
36 labelToIndex = new IntList(size);
  /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...]
  /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,
134 public IntList getSuccessors() {
Ropper.java 45 import com.android.dx.util.IntList;
119 private final ArrayList<IntList> resultSubroutines;
290 IntList getSuccessors() {
291 IntList successors = new IntList(callerBlocks.size());
395 new ArrayList<IntList>(blocks.size() * 2 + 10);
587 private void addBlock(BasicBlock block, IntList subroutines) {
608 private boolean addOrReplaceBlock(BasicBlock block, IntList subroutines) {
647 IntList subroutines) {
680 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));
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);
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/db/
Converters.java 33 * the {@link String} to an {@link IntList}.
36 public static IntList storedStringToIntList(String value) {
39 return new IntList(ints);
43 * Converts the {@link IntList} back into a String containing a comma delimited list of
47 public static String intListToStoredString(IntList list) {
82 public static class IntList {
85 public IntList(List<Integer> ints) {
  /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));
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
FieldType.java 24 import static com.example.android.autofill.service.data.source.local.db.Converters.IntList;
34 private final IntList mAutofillTypes;
48 public FieldType(@NonNull String typeName, @NonNull IntList autofillTypes,
63 public IntList getAutofillTypes() {
  /dalvik/dx/src/com/android/dx/ssa/
BasicRegisterMapper.java 20 import com.android.dx.util.IntList;
28 private final IntList oldToNew;
39 oldToNew = new IntList(countOldRegisters);
  /dalvik/dx/src/com/android/dx/ssa/back/
IdenticalBlockCombiner.java 23 import com.android.dx.util.IntList;
69 IntList preds = ropMethod.labelToPredecessors(b.getLabel());
85 IntList toCombine = new IntList();
135 private void combineBlocks(int alphaLabel, IntList betaLabels) {
141 IntList preds = ropMethod.labelToPredecessors(bb.getLabel());
160 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/dexmaker/src/main/java/com/android/dx/
Label.java 22 import com.android.dx.util.IntList;
77 IntList successors = new IntList();

Completed in 2170 milliseconds

1 2 3 4 5