Home
last modified time | relevance | path

Searched refs:expectedModCount (Results 1 – 9 of 9) sorted by relevance

/libcore/luni/src/main/java/java/util/
DAbstractList.java40 int expectedModCount; field in AbstractList.SimpleListIterator
45 expectedModCount = modCount; in SimpleListIterator()
53 if (expectedModCount == modCount) { in next()
70 if (expectedModCount != modCount) { in remove()
80 expectedModCount = modCount; in remove()
98 if (expectedModCount == modCount) { in add()
106 if (modCount != expectedModCount) { in add()
107 expectedModCount = modCount; in add()
123 if (expectedModCount == modCount) { in previous()
141 if (expectedModCount == modCount) { in set()
DLinkedList.java61 int pos, expectedModCount; field in LinkedList.LinkIterator
69 expectedModCount = list.modCount; in LinkIterator()
90 if (expectedModCount == list.modCount) { in add()
98 expectedModCount++; in add()
115 if (expectedModCount == list.modCount) { in next()
132 if (expectedModCount == list.modCount) { in previous()
149 if (expectedModCount == list.modCount) { in remove()
160 expectedModCount++; in remove()
172 if (expectedModCount == list.modCount) { in set()
189 private int expectedModCount; field in LinkedList.ReverseLinkIterator
[all …]
DLinkedHashMap.java338 int expectedModCount = modCount; field in LinkedHashMap.LinkedHashIterator
345 if (modCount != expectedModCount) in nextEntry()
355 if (modCount != expectedModCount) in remove()
361 expectedModCount = modCount; in remove()
DWeakHashMap.java116 private int position = 0, expectedModCount; field in WeakHashMap.HashIterator
126 expectedModCount = modCount; in HashIterator()
154 if (expectedModCount == modCount) { in next()
169 if (expectedModCount == modCount) { in remove()
173 expectedModCount++; in remove()
DArrayList.java563 private int expectedModCount = modCount; field in ArrayList.ArrayListIterator
572 if (ourList.modCount != expectedModCount) { in next()
585 if (modCount != expectedModCount) { in remove()
594 expectedModCount = ++modCount; in remove()
DIdentityHashMap.java137 int expectedModCount; field in IdentityHashMap.IdentityHashMapIterator
147 expectedModCount = hm.modCount; in IdentityHashMapIterator()
163 if (expectedModCount != associatedMap.modCount) { in checkConcurrentMod()
192 expectedModCount++; in remove()
DHashMap.java768 int expectedModCount = modCount; field in HashMap.HashIterator
786 if (modCount != expectedModCount) in nextEntry()
804 if (modCount != expectedModCount) in remove()
808 expectedModCount = modCount; in remove()
DHashtable.java710 int expectedModCount = modCount; field in Hashtable.HashIterator
726 if (modCount != expectedModCount) in nextEntry()
758 if (modCount != expectedModCount) in remove()
762 expectedModCount = modCount; in remove()
DTreeMap.java868 protected int expectedModCount = modCount; field in TreeMap.MapIterator
882 if (modCount != expectedModCount) { in stepForward()
894 if (modCount != expectedModCount) { in stepBackward()
907 expectedModCount = modCount; in remove()