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

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DLinkedListTest.java43 LinkedList ll; field in class:LinkedListTest
64 new Support_ListTest("", ll).runTest();
77 assertTrue("Incorrect LinkedList constructed", new LinkedList(ll)
78 .equals(ll));
94 ll.add(50, o = "Test");
95 assertTrue("Failed to add Object>: " + ll.get(50).toString(), ll
98 ll.get(51) == objArray[50] && (ll.get(52) == objArray[51]));
99 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/ojluni/src/main/native/
H A Djlong_md.h49 #define jlong_ltz(ll) ((ll)<0)
50 #define jlong_gez(ll) ((ll)>=0)
51 #define jlong_gtz(ll) ((ll)>0)
/libcore/ojluni/src/main/java/java/util/stream/
H A DDoublePipeline.java390 (ll, d) -> {
391 Collectors.sumWithCompensation(ll, d);
392 ll[2] += d;
394 (ll, rr) -> {
395 Collectors.sumWithCompensation(ll, rr[0]);
396 Collectors.sumWithCompensation(ll, rr[1]);
397 ll[2] += rr[2];
432 (ll, d) -> {
433 ll[2]++;
434 Collectors.sumWithCompensation(ll,
[all...]
H A DLongPipeline.java413 (ll, i) -> {
414 ll[0]++;
415 ll[1] += i;
417 (ll, rr) -> {
418 ll[0] += rr[0];
419 ll[1] += rr[1];
H A DIntPipeline.java436 (ll, i) -> {
437 ll[0]++;
438 ll[1] += i;
440 (ll, rr) -> {
441 ll[0] += rr[0];
442 ll[1] += rr[1];
/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 265 milliseconds