Searched defs:expectedModCount (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/awt/util/
H A DIdentityLinkedList.java656 private int expectedModCount = modCount; field in class:IdentityLinkedList.ListItr
723 expectedModCount++;
738 expectedModCount++;
742 if (modCount != expectedModCount)
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractList.java348 int expectedModCount = modCount; field in class:AbstractList.Itr
378 expectedModCount = modCount;
385 if (modCount != expectedModCount)
427 expectedModCount = modCount;
441 expectedModCount = modCount;
H A DLinkedHashMap.java375 int expectedModCount = modCount; field in class:LinkedHashMap.LinkedHashIterator
384 if (modCount != expectedModCount)
389 expectedModCount = modCount;
393 if (modCount != expectedModCount)
H A DPriorityQueue.java510 private int expectedModCount = modCount; field in class:PriorityQueue.Itr
518 if (expectedModCount != modCount)
532 if (expectedModCount != modCount)
550 expectedModCount = modCount;
H A DArrayList.java734 int expectedModCount = modCount;
745 if (modCount != expectedModCount) {
823 int expectedModCount = modCount; field in class:ArrayList.Itr
851 expectedModCount = modCount;
858 if (modCount != expectedModCount)
917 expectedModCount = modCount;
1056 int expectedModCount = ArrayList.this.modCount;
1109 expectedModCount = ArrayList.this.modCount;
1135 expectedModCount = ArrayList.this.modCount;
1142 if (expectedModCount !
[all...]
H A DHashtable.java1122 protected int expectedModCount = modCount; field in class:Hashtable.Enumerator
1166 if (modCount != expectedModCount)
1176 if (modCount != expectedModCount)
1187 expectedModCount++;
H A DIdentityHashMap.java712 int expectedModCount = modCount; // to support fast-fail field in class:IdentityHashMap.IdentityHashMapIterator
731 if (modCount != expectedModCount)
745 if (modCount != expectedModCount)
748 expectedModCount = ++modCount;
779 expectedModCount = modCount;
H A DLinkedList.java873 private int expectedModCount = modCount; field in class:LinkedList.ListItr
930 expectedModCount++;
948 expectedModCount++;
952 if (modCount != expectedModCount)
H A DVector.java1123 int expectedModCount = modCount; field in class:Vector.Itr
1148 expectedModCount = modCount;
1155 if (modCount != expectedModCount)
1206 expectedModCount = modCount;
H A DHashMap.java907 int expectedModCount; // For fast-fail field in class:HashMap.HashIterator
912 expectedModCount = modCount;
925 if (modCount != expectedModCount)
943 if (modCount != expectedModCount)
948 expectedModCount = modCount;
H A DWeakHashMap.java840 private int expectedModCount = modCount; field in class:WeakHashMap.HashIterator
881 if (modCount != expectedModCount)
896 if (modCount != expectedModCount)
900 expectedModCount = modCount;
H A DTreeMap.java1098 int expectedModCount; field in class:TreeMap.PrivateEntryIterator
1101 expectedModCount = modCount;
1114 if (modCount != expectedModCount)
1125 if (modCount != expectedModCount)
1135 if (modCount != expectedModCount)
1141 expectedModCount = modCount;
1575 int expectedModCount; field in class:TreeMap.NavigableSubMap.SubMapIterator
1579 expectedModCount = m.modCount;
1593 if (m.modCount != expectedModCount)
1604 if (m.modCount != expectedModCount)
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DLinkedHashMap.java804 private int expectedModCount = modCount; field in class:LinkedHashMap.HashIterator
816 if (modCount != expectedModCount)
829 if (modCount != expectedModCount)
839 expectedModCount++;

Completed in 54 milliseconds