Searched defs:ints (Results 1 - 3 of 3) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DListIntSet.java27 final IntList ints; field in class:ListIntSet
33 ints = new IntList();
34 ints.sort();
39 int index = ints.binarysearch(value);
42 ints.insert(-(index + 1), value);
48 int index = ints.indexOf(value);
51 ints.removeIndex(index);
57 return ints.indexOf(value) >= 0;
64 int szThis = ints.size();
65 int szOther = o.ints
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DListIntSet.java27 final IntList ints; field in class:ListIntSet
33 ints = new IntList();
34 ints.sort();
39 int index = ints.binarysearch(value);
42 ints.insert(-(index + 1), value);
48 int index = ints.indexOf(value);
51 ints.removeIndex(index);
57 return ints.indexOf(value) >= 0;
64 int szThis = ints.size();
65 int szOther = o.ints
[all...]
/dalvik/tests/003-omnibus-opcodes/src/
H A DArray.java33 static void checkInts(int[] ints) { argument
34 assert(ints[0] == 70000);
35 assert(ints[1] == 70001);
36 assert(ints[2] == 70002);
37 assert(ints[3] == 70003);
38 assert(ints[4] == 70004);
72 static void checkRange32(int[] ints, int[] empty, int negVal1, int negVal2){ argument
76 assert(ints.length == 5);
79 i = ints[5]; // exact bound
85 ints[
[all...]

Completed in 141 milliseconds