Lines Matching refs:ll

58     private LinkedList ll;
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.size();
326 ll.set(25, null);
333 Collections.copy(al, ll);
335 assertEquals("Elements do not match after copying collection", ll
420 final int size = ll.size();
421 Collections.fill(ll, "k");
422 assertEquals("Fill modified list size", size, ll.size());
423 Iterator i = ll.iterator();
427 Collections.fill(ll, null);
428 assertEquals("Fill with nulls modified list size", size, ll.size());
429 i = ll.iterator();
549 Collections.reverse(ll);
550 Iterator i = ll.iterator();
570 // assumes no duplicates in ll
572 LinkedList list2 = new LinkedList(ll);
574 final int llSize = ll.size();
577 .get(llSize - i - 1), ll.get(i));
582 // Assumes ll is sorted and has no duplicate keys and is large ( > 20
593 al.addAll(ll);
598 ll2.addAll(ll);
635 if (list.get(index) != ll.get(index))
645 // Assumes ll is sorted and has no duplicate keys and is large ( > 20
656 al.addAll(ll);
661 ll2.addAll(ll);
694 // assumes no duplicate keys in ll
695 final int llSize = ll.size();
703 Collections.shuffle(ll);
704 Collections.sort(ll);
709 ((Integer) ll.get(i)).compareTo((Integer) ll.get(i + 1)) < 0);
1242 Enumeration e = Collections.enumeration(ll);
1246 assertEquals("Wrong size", ll.size(), size);
1249 assertEquals("wrong element at position " + i + ",", ll.get(i), al
1629 Collection c = Collections.unmodifiableCollection(ll);
1630 assertTrue("Returned collection is of incorrect size", c.size() == ll
1632 Iterator iterator = ll.iterator();
1674 List c = Collections.unmodifiableList(ll);
1682 assertTrue("Returned list is of incorrect size", c.size() == ll.size());
1687 Iterator iterator = ll.iterator();
1822 Iterator iterator = ll.iterator();
1895 Iterator i = ll.iterator();
2199 ll = new LinkedList();
2208 ll.add(objArray[i]);