Searched defs:modCount (Results 1 - 7 of 7) sorted by relevance

/libcore/ojluni/src/main/java/java/util/
H A DAbstractList.java283 * for the (protected) {@link #modCount} field.
320 * the (protected) {@link #modCount} field.
344 * The modCount value that the iterator believes that the backing
348 int expectedModCount = modCount;
378 expectedModCount = modCount;
385 if (modCount != expectedModCount)
427 expectedModCount = modCount;
441 expectedModCount = modCount;
455 * {@code modCount} value of the backing list. There are two variants
474 * <p>All methods first check to see if the actual {@code modCount} o
601 protected transient int modCount = 0; field in class:AbstractList
[all...]
H A DPriorityQueue.java114 transient int modCount; // non-private to simplify nested class access field in class:PriorityQueue
336 modCount++;
521 * The modCount value that the iterator believes that the backing
525 private int expectedModCount = modCount;
534 if (expectedModCount != modCount)
548 if (expectedModCount != modCount)
566 expectedModCount = modCount;
579 modCount++;
590 modCount++;
614 modCount
[all...]
H A DHashtable.java166 private transient int modCount = 0; field in class:Hashtable
405 modCount++;
422 modCount++;
499 modCount++;
533 modCount++;
557 t.modCount = 0;
724 modCount++;
875 final int expectedModCount = modCount;
883 if (expectedModCount != modCount) {
895 final int expectedModCount = modCount;
[all...]
H A DIdentityHashMap.java184 transient int modCount; field in class:IdentityHashMap
443 modCount++;
527 modCount++;
561 modCount++;
615 modCount++;
714 int expectedModCount = modCount; // to support fast-fail
733 if (modCount != expectedModCount)
747 if (modCount != expectedModCount)
750 expectedModCount = ++modCount;
781 expectedModCount = modCount;
[all...]
H A DWeakHashMap.java191 int modCount; field in class:WeakHashMap
462 modCount++;
600 modCount++;
630 modCount++;
655 modCount++;
764 private int expectedModCount = modCount;
805 if (modCount != expectedModCount)
820 if (modCount != expectedModCount)
824 expectedModCount = modCount;
1018 int expectedModCount = modCount;
[all...]
H A DHashMap.java415 transient int modCount; field in class:HashMap
660 ++modCount;
844 ++modCount;
859 modCount++;
929 int mc = modCount;
930 // Android-changed: Detect changes to modCount early.
931 for (int i = 0; (i < tab.length && modCount == mc); ++i) {
935 if (modCount != mc)
978 int mc = modCount;
979 // Android-changed: Detect changes to modCount earl
[all...]
H A DTreeMap.java134 private transient int modCount = 0; field in class:TreeMap
318 ++modCount;
543 modCount++;
585 modCount++;
618 modCount++;
640 clone.modCount = 0;
1004 int expectedModCount = modCount;
1008 if (expectedModCount != modCount) {
1017 int expectedModCount = modCount;
1022 if (expectedModCount != modCount) {
[all...]

Completed in 99 milliseconds