HomeSort by relevance Sort by last modified time
    Searched full:expectedmodcount (Results 1 - 14 of 14) sorted by null

  /libcore/luni/src/main/java/java/util/
LinkedList.java 61 int pos, expectedModCount;
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;
    [all...]
AbstractList.java 40 int expectedModCount;
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 == modCount)
    [all...]
LinkedHashMap.java 338 int expectedModCount = modCount;
345 if (modCount != expectedModCount)
355 if (modCount != expectedModCount)
361 expectedModCount = modCount;
WeakHashMap.java 116 private int position = 0, expectedModCount;
126 expectedModCount = modCount;
154 if (expectedModCount == modCount) {
169 if (expectedModCount == modCount) {
173 expectedModCount++;
174 // cannot poll() as that would change the expectedModCount
ArrayList.java 563 private int expectedModCount = modCount;
572 if (ourList.modCount != expectedModCount) {
585 if (modCount != expectedModCount) {
594 expectedModCount = ++modCount;
IdentityHashMap.java 137 int expectedModCount;
147 expectedModCount = hm.modCount;
163 if (expectedModCount != associatedMap.modCount) {
192 expectedModCount++;
HashMap.java 768 int expectedModCount = modCount;
786 if (modCount != expectedModCount)
804 if (modCount != expectedModCount)
808 expectedModCount = modCount;
    [all...]
Hashtable.java 710 int expectedModCount = modCount;
726 if (modCount != expectedModCount)
758 if (modCount != expectedModCount)
762 expectedModCount = modCount;
    [all...]
TreeMap.java 868 protected int expectedModCount = modCount;
882 if (modCount != expectedModCount) {
894 if (modCount != expectedModCount) {
907 expectedModCount = modCount;
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractReferenceMap.java 749 int expectedModCount;
757 expectedModCount = parent.modCount;
786 if (parent.modCount != expectedModCount) {
827 expectedModCount = parent.modCount;
    [all...]
AbstractHashedMap.java     [all...]
  /external/guava/guava/src/com/google/common/collect/
MinMaxPriorityQueue.java 749 private int expectedModCount = modCount;
786 expectedModCount++;
826 if (modCount != expectedModCount) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractListTest.java 396 //test remove for failure by inconsistency of modCount and expectedModCount
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar 

Completed in 1210 milliseconds