Searched refs:ll (Results 1 - 6 of 6) sorted by relevance

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DLinkedListTest.java38 LinkedList ll; field in class:LinkedListTest
59 new Support_ListTest("", ll).runTest();
72 assertTrue("Incorrect LinkedList constructed", new LinkedList(ll)
73 .equals(ll));
89 ll.add(50, o = "Test");
90 assertTrue("Failed to add Object>: " + ll.get(50).toString(), ll
93 ll.get(51) == objArray[50] && (ll.get(52) == objArray[51]));
94 ll
[all...]
H A DCollectionsTest.java58 private LinkedList ll; field in class:CollectionsTest
261 // assumes ll is sorted and has no duplicate keys
262 final int llSize = ll.size();
271 assertEquals("Returned incorrect binary search item position", ll
272 .get(i), ll.get(Collections.binarySearch(ll, ll
314 Collections.copy(null, ll);
320 Collections.copy(ll, null);
325 final int llSize = ll
[all...]
H A DAbstractListTest.java167 List ll = new LinkedList();
169 ll.add(new Integer(i));
173 !(ll.subList(3, 7) instanceof RandomAccess));
H A DEnumSetTest.java44 a, b,c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, aa, bb, cc, dd, ee, ff, gg, hh, ii, jj, kk, ll, enum constant in enum:EnumSetTest.EnumFoo
52 a{}, b{}, c{}, d{}, e{}, f{}, g{}, h{}, i{}, j{}, k{}, l{}, m{}, n{}, o{}, p{}, q{}, r{}, s{}, t{}, u{}, v{}, w{}, x{}, y{}, z{}, A{}, B{}, C{}, D{}, E{}, F{}, G{}, H{}, I{}, J{}, K{}, L{}, M{}, N{}, O{}, P{}, Q{}, R{}, S{}, T{}, U{}, V{}, W{}, X{}, Y{}, Z{}, aa{}, bb{}, cc{}, dd{}, ee{}, ff{}, gg{}, hh{}, ii{}, jj{}, kk{}, ll{}, mm{}, enum constant in enum:EnumSetTest.HugeEnumWithInnerClass
56 a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, aa, bb, cc, dd, ee, ff, gg, hh, ii, jj, kk, ll, mm, enum constant in enum:EnumSetTest.HugeEnum
683 result = set.contains(EnumFoo.ll);
684 assertTrue("Should contain EnumFoo.ll", result);
729 result = hugeSet.contains(HugeEnum.ll);
/libcore/luni/src/test/java/libcore/java/util/
H A DOldListIteratorTest.java247 LinkedList ll = new LinkedList();
249 ll.add(objArray[i]);
251 l = ll.listIterator();
H A DOldCollectionsTest.java70 LinkedList<String> ll = lls;
73 Collections.binarySearch(ll, new Integer(10), null);
103 LinkedList ll = lls;
106 Collections.binarySearch(ll, new Integer(10));

Completed in 130 milliseconds