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

/dalvik/libcore/luni/src/main/java/java/util/
H A DAbstractList.java41 int expectedModCount; field in class:AbstractList.SimpleListIterator
47 expectedModCount = modCount;
55 if (expectedModCount == modCount) {
72 if (expectedModCount != modCount) {
82 expectedModCount = modCount;
102 if (expectedModCount == modCount) {
110 if (modCount != expectedModCount) {
111 expectedModCount = modCount;
127 if (expectedModCount == modCount) {
145 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) {
H A DLinkedHashMap.java338 int expectedModCount = modCount; field in class:LinkedHashMap.LinkedHashIterator
345 if (modCount != expectedModCount)
355 if (modCount != expectedModCount)
361 expectedModCount = modCount;
H A DArrayList.java563 private int expectedModCount = modCount; field in class:ArrayList.ArrayListIterator
572 if (ourList.modCount != expectedModCount) {
585 if (modCount != expectedModCount) {
594 expectedModCount = ++modCount;
H A DIdentityHashMap.java127 int expectedModCount; field in class:IdentityHashMap.IdentityHashMapIterator
137 expectedModCount = hm.modCount;
153 if (expectedModCount != associatedMap.modCount) {
182 expectedModCount++;
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 DHashMap.java776 int expectedModCount = modCount; field in class:HashMap.HashIterator
794 if (modCount != expectedModCount)
812 if (modCount != expectedModCount)
816 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.java171 int expectedModCount; field in class:TreeMap.AbstractMapIterator
179 expectedModCount = map.modCount;
198 if (expectedModCount != backingMap.modCount) {
216 if (expectedModCount == backingMap.modCount) {
221 expectedModCount++;

Completed in 96 milliseconds