Searched defs:nextIndex (Results 1 - 11 of 11) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DListIterator.java78 public int nextIndex(); method in interface:ListIterator
H A DAbstractList.java118 public int nextIndex() { method in class:AbstractList.FullListIterator
192 return iterator.nextIndex() < end;
200 if (iterator.nextIndex() < end) {
206 public int nextIndex() { method in class:AbstractList.SubAbstractList.SubAbstractListIterator
207 return iterator.nextIndex() - start;
586 return it.nextIndex();
592 return it.nextIndex();
H A DLinkedList.java127 public int nextIndex() { method in class:LinkedList.LinkIterator
H A DHashMap.java784 int nextIndex; field in class:HashMap.HashIterator
793 while (next == null && nextIndex < tab.length) {
794 next = tab[nextIndex++];
813 while (next == null && nextIndex < tab.length) {
814 next = tab[nextIndex++];
H A DHashtable.java707 int nextIndex; field in class:Hashtable.HashIterator
715 while (next == null && nextIndex < tab.length) {
716 next = tab[nextIndex++];
734 while (next == null && nextIndex < tab.length) {
735 next = tab[nextIndex++];
748 while (next == null && nextIndex < tab.length) {
749 next = tab[nextIndex++];
H A DCollections.java1089 @Override public int nextIndex() {
1090 return iterator.nextIndex();
2128 // starting from listIt.nextIndex().
2130 return listIt.nextIndex();
2947 @Override public int nextIndex() { method in class:Collections.CheckedListIterator
2948 return i.nextIndex();
/libcore/luni/src/test/java/libcore/java/util/
H A DOldListIteratorTest.java76 public int nextIndex() { method in class:OldListIteratorTest.Mock_ListIterator
161 assertTrue(objArray[i].equals(l.nextIndex()));
/libcore/luni/src/test/java/tests/api/java/util/
H A DAbstractSequentialListTest.java87 public int nextIndex() { method in class:AbstractSequentialListTest.Mock_unsupportedListIterator
126 public int nextIndex() { method in class:AbstractSequentialListTest.Mock_ListIterator
329 public int nextIndex() {
444 public int nextIndex() {
517 public int nextIndex() {
/libcore/luni/src/main/java/java/util/concurrent/
H A DCopyOnWriteArrayList.java726 public int nextIndex() { method in class:CopyOnWriteArrayList.CowIterator
H A DArrayBlockingQueue.java996 private int nextIndex; field in class:ArrayBlockingQueue.Itr
1031 nextIndex = NONE;
1036 nextItem = itemAt(nextIndex = takeIndex);
1047 // assert nextIndex >= 0;
1107 if (invalidated(nextIndex, prevTakeIndex, dequeues, len))
1108 nextIndex = REMOVED;
1112 if (cursor < 0 && nextIndex < 0 && lastRet < 0)
1124 * nextIndex < 0 && lastRet < 0) or as a special exception, when
1132 // assert nextIndex < 0;
1162 // assert nextIndex
[all...]
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 362 milliseconds