Lines Matching refs:next

158             i.next();
220 i.next();
316 obj = i.next();
430 Object tmp = fwd.next();
511 it.next();
564 itr.next();
599 di.next();
600 di.set(si.next());
628 T candidate = i.next();
631 T next = i.next();
632 if (next.compareTo(candidate) < 0)
633 candidate = next;
665 T candidate = i.next();
668 T next = i.next();
669 if (comp.compare(next, candidate) < 0)
670 candidate = next;
698 T candidate = i.next();
701 T next = i.next();
702 if (next.compareTo(candidate) > 0)
703 candidate = next;
735 T candidate = i.next();
738 T next = i.next();
739 if (comp.compare(next, candidate) > 0)
740 candidate = next;
886 if (itr.next()==null) {
893 if (oldVal.equals(itr.next())) {
934 continue nextCand; // Element mismatch, try next cand
943 if (!eq(ti.next(), si.next())) {
944 // Back up source iterator to next candidate
987 continue nextCand; // Element mismatch, try next cand
998 if (!eq(ti.next(), si.next())) {
1000 // Back up source iterator to next candidate
1067 public E next() {return i.next();}
1234 public E next() {return i.next();}
1402 public Map.Entry<K,V> next() {
1403 return new UnmodifiableEntry<>(i.next());
1450 * The next two methods are overridden to protect against
1570 * foo(i.next());
1679 * foo(i.next());
1738 * foo(i.next());
1749 * foo(i.next());
1827 * foo(i.next());
1987 * foo(i.next());
2115 * foo(i.next());
2128 * foo(i.next());
2314 public E next() { return it.next(); }
2541 public E next() { return i.next(); }
2747 public Map.Entry<K,V> next() {
2748 return checkedEntry(i.next(), valueType);
2833 if (c.contains(it.next()) != complement) {
2982 * <li>{@link Iterator#next next} always throws {@link
3006 public E next() { throw new NoSuchElementException(); }
3019 * <li>{@link Iterator#next next} and {@link ListIterator#previous
3305 public E next() {
3665 return i.next();