HomeSort by relevance Sort by last modified time
    Searched refs:expectedModCount (Results 1 - 10 of 10) sorted by null

  /libcore/luni/src/main/java/java/util/
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...]
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...]
LinkedHashMap.java 342 int expectedModCount = modCount;
349 if (modCount != expectedModCount)
359 if (modCount != expectedModCount)
365 expectedModCount = modCount;
ArrayList.java 559 private int expectedModCount = modCount;
568 if (ourList.modCount != expectedModCount) {
581 if (modCount != expectedModCount) {
590 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
IdentityHashMap.java 137 int expectedModCount;
147 expectedModCount = hm.modCount;
163 if (expectedModCount != associatedMap.modCount) {
192 expectedModCount++;
HashMap.java 773 int expectedModCount = modCount;
791 if (modCount != expectedModCount)
809 if (modCount != expectedModCount)
813 expectedModCount = modCount;
    [all...]
Hashtable.java 711 int expectedModCount = modCount;
727 if (modCount != expectedModCount)
759 if (modCount != expectedModCount)
763 expectedModCount = modCount;
    [all...]
TreeMap.java 868 protected int expectedModCount = modCount;
882 if (modCount != expectedModCount) {
894 if (modCount != expectedModCount) {
907 expectedModCount = modCount;
    [all...]
  /development/samples/NFCDemo/libs/
guava-10.0.1.jar 

Completed in 623 milliseconds