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

/libcore/luni/src/main/java/java/util/
H A DAbstractList.java40 int expectedModCount; field in class:AbstractList.SimpleListIterator
45 expectedModCount = modCount;
53 if (expectedModCount == modCount) {
70 if (expectedModCount != modCount) {
80 expectedModCount = modCount;
98 if (expectedModCount == modCount) {
106 if (modCount != expectedModCount) {
107 expectedModCount = modCount;
123 if (expectedModCount == modCount) {
141 if (expectedModCount
[all...]
H A DLinkedList.java61 int pos, expectedModCount; field in class:LinkedList.LinkIterator
69 expectedModCount = list.modCount;
90 if (expectedModCount == list.modCount) {
98 expectedModCount++;
115 if (expectedModCount == list.modCount) {
132 if (expectedModCount == list.modCount) {
149 if (expectedModCount == list.modCount) {
160 expectedModCount++;
172 if (expectedModCount == list.modCount) {
189 private int expectedModCount; field in class:LinkedList.ReverseLinkIterator
[all...]
H A DLinkedHashMap.java342 int expectedModCount = modCount; field in class:LinkedHashMap.LinkedHashIterator
349 if (modCount != expectedModCount)
359 if (modCount != expectedModCount)
365 expectedModCount = modCount;
H A DArrayList.java559 private int expectedModCount = modCount; field in class:ArrayList.ArrayListIterator
568 if (ourList.modCount != expectedModCount) {
581 if (modCount != expectedModCount) {
590 expectedModCount = ++modCount;
H A DWeakHashMap.java116 private int position = 0, expectedModCount; field in class:WeakHashMap.HashIterator
126 expectedModCount = modCount;
154 if (expectedModCount == modCount) {
169 if (expectedModCount == modCount) {
173 expectedModCount++;
174 // cannot poll() as that would change the expectedModCount
H A DIdentityHashMap.java137 int expectedModCount; field in class:IdentityHashMap.IdentityHashMapIterator
147 expectedModCount = hm.modCount;
163 if (expectedModCount != associatedMap.modCount) {
192 expectedModCount++;
H A DHashMap.java773 int expectedModCount = modCount; field in class:HashMap.HashIterator
791 if (modCount != expectedModCount)
809 if (modCount != expectedModCount)
813 expectedModCount = modCount;
H A DHashtable.java715 int expectedModCount = modCount; field in class:Hashtable.HashIterator
731 if (modCount != expectedModCount)
763 if (modCount != expectedModCount)
767 expectedModCount = modCount;
H A DTreeMap.java868 protected int expectedModCount = modCount; field in class:TreeMap.MapIterator
882 if (modCount != expectedModCount) {
894 if (modCount != expectedModCount) {
907 expectedModCount = modCount;

Completed in 78 milliseconds