/dalvik/libcore/luni/src/main/java/java/util/ |
D | AbstractList.java | 36 protected transient int modCount; field in AbstractList 47 expectedModCount = modCount; in SimpleListIterator() 55 if (expectedModCount == modCount) { in next() 72 if (expectedModCount != modCount) { in remove() 82 expectedModCount = modCount; in remove() 102 if (expectedModCount == modCount) { in add() 110 if (modCount != expectedModCount) { in add() 111 expectedModCount = modCount; in add() 127 if (expectedModCount == modCount) { in previous() 145 if (expectedModCount == modCount) { in set() [all …]
|
D | LinkedList.java | 63 expectedModCount = list.modCount; in LinkIterator() 84 if (expectedModCount == list.modCount) { in add() 94 list.modCount++; in add() 109 if (expectedModCount == list.modCount) { in next() 126 if (expectedModCount == list.modCount) { in previous() 143 if (expectedModCount == list.modCount) { in remove() 156 list.modCount++; in remove() 166 if (expectedModCount == list.modCount) { in set() 232 modCount++; in add() 253 modCount++; in add() [all …]
|
D | Vector.java | 158 modCount++; in add() 199 modCount++; in addAll() 228 modCount++; in addElement() 591 modCount++; in insertElementAt() 706 modCount++; in remove() 757 modCount++; in removeAllElements() 806 modCount++; in removeElementAt() 841 modCount++; in removeRange() 924 modCount++; in setSize()
|
D | ArrayList.java | 90 modCount = 1; in ArrayList() 148 modCount++; in add() 164 modCount++; in add() 230 modCount++; in addAll() 253 modCount++; in addAll() 268 modCount++; in clear() 510 modCount++; in remove() 555 modCount++; in removeRange() 650 modCount = 0; in trimToSize()
|
D | LinkedHashMap.java | 280 modCount++; in makeTail() 338 int expectedModCount = modCount; 345 if (modCount != expectedModCount) in nextEntry() 355 if (modCount != expectedModCount) in remove() 361 expectedModCount = modCount; in remove()
|
D | WeakHashMap.java | 48 volatile int modCount; field in WeakHashMap 126 expectedModCount = modCount; in HashIterator() 154 if (expectedModCount == modCount) { in next() 169 if (expectedModCount == modCount) { in remove() 259 modCount++; 582 modCount++; 624 modCount++; 704 modCount++;
|
D | HashMap.java | 92 transient int modCount; field in HashMap 389 modCount++; in put() 403 modCount++; in putValueForNullKey() 618 modCount++; in remove() 633 modCount++; in removeNullKey() 654 modCount++; in clear() 759 int expectedModCount = modCount; 777 if (modCount != expectedModCount) in nextEntry() 795 if (modCount != expectedModCount) in remove() 799 expectedModCount = modCount; in remove() [all …]
|
D | Stack.java | 79 modCount++; in pop()
|
D | IdentityHashMap.java | 76 transient int modCount = 0; field in IdentityHashMap 137 expectedModCount = hm.modCount; in IdentityHashMapIterator() 153 if (expectedModCount != associatedMap.modCount) { in checkConcurrentMod() 315 modCount++; 464 modCount++; 571 modCount++;
|
D | Hashtable.java | 96 private transient int modCount; field in Hashtable 391 modCount++; in put() 576 modCount++; in remove() 594 modCount++; in clear() 722 int expectedModCount = modCount; 738 if (modCount != expectedModCount) in nextEntry() 770 if (modCount != expectedModCount) in remove() 774 expectedModCount = modCount; in remove() 839 modCount++; in removeMapping()
|
D | TreeMap.java | 41 transient int modCount; field in TreeMap 176 expectedModCount = map.modCount; in AbstractMapIterator() 195 if (expectedModCount != backingMap.modCount) { in makeNext() 213 if (expectedModCount == backingMap.modCount) { in remove() 501 if (firstKeyModCount == backingMap.modCount) { in setFirstKey() 562 firstKeyModCount = backingMap.modCount; in setFirstKey() 620 if (lastKeyModCount == backingMap.modCount) { in setLastKey() 684 lastKeyModCount = backingMap.modCount; in setLastKey() 1036 modCount++; in clear() 1449 modCount++; in put() [all …]
|
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/util/ |
D | TwoKeyHashMap.java | 45 private int modCount; field in TwoKeyHashMap 116 modCount++; in clear() 147 modCount++; in put() 172 modCount++; in put() 408 startModCount = modCount; in EntryIteratorImpl() 430 if (modCount != startModCount) { in next() 448 if (modCount != startModCount) { in remove() 464 modCount++; in remove() 497 modCount++; in removeEntry() 517 modCount++; in removeEntry()
|
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
D | ConcurrentHashMap.java | 266 transient int modCount; field in ConcurrentHashMap.Segment 436 ++modCount; in put() 532 ++modCount; in remove() 554 ++modCount; in clear() 673 mcsum += mc[i] = segments[i].modCount; in isEmpty() 681 mc[i] != segments[i].modCount) in isEmpty() 708 mcsum += mc[i] = segments[i].modCount; in size() 713 if (mc[i] != segments[i].modCount) { in size() 793 mcsum += mc[i] = segments[i].modCount; in containsValue() 801 if (mc[i] != segments[i].modCount) { in containsValue()
|
/dalvik/vm/jdwp/ |
D | JdwpEvent.h | 92 int modCount; /* #of entries in mods[] */ member
|
D | JdwpEvent.c | 186 for (i = 0; i < pEvent->modCount; i++) { in dvmJdwpRegisterEvent() 245 for (i = 0; i < pEvent->modCount; i++) { in unregisterEvent() 352 for (i = 0; i < pEvent->modCount; i++) { in dvmJdwpEventFree() 390 for (i = 0; i < pEvent->modCount; i++) { in cleanupMatchList() 464 for (i = pEvent->modCount; i > 0; i--, pMod++) { in modsMatch()
|
D | JdwpHandler.c | 1525 pEvent->modCount = modifierCount; in handleER_Set()
|