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++;
457 modCount++;
489 modCount++;
523 modCount++;
547 t.modCount = 0;
713 modCount++;
856 final int expectedModCount = modCount;
864 if (expectedModCount != modCount) {
875 final int expectedModCount = modCount;
[all...]
H A DIdentityHashMap.java181 private transient int modCount; field in class:IdentityHashMap
448 modCount++;
532 modCount++;
567 modCount++;
621 modCount++;
720 int expectedModCount = modCount; // to support fast-fail
739 if (modCount != expectedModCount)
753 if (modCount != expectedModCount)
756 expectedModCount = ++modCount;
787 expectedModCount = modCount;
[all...]
H A DWeakHashMap.java190 int modCount; field in class:WeakHashMap
444 modCount++;
582 modCount++;
612 modCount++;
637 modCount++;
747 private int expectedModCount = modCount;
788 if (modCount != expectedModCount)
803 if (modCount != expectedModCount)
807 expectedModCount = modCount;
993 int expectedModCount = modCount;
[all...]
H A DHashMap.java190 transient int modCount; field in class:HashMap
435 modCount++;
452 modCount++;
607 modCount++;
641 modCount++;
662 modCount++;
721 result.modCount = 0;
837 expectedModCount = modCount;
850 if (modCount != expectedModCount)
868 if (modCount !
[all...]
H A DTreeMap.java134 private transient int modCount = 0; field in class:TreeMap
318 ++modCount;
567 modCount++;
609 modCount++;
642 modCount++;
664 clone.modCount = 0;
1024 int expectedModCount = modCount;
1028 if (expectedModCount != modCount) {
1037 int expectedModCount = modCount;
1042 if (expectedModCount != modCount) {
[all...]

Completed in 117 milliseconds