HomeSort by relevance Sort by last modified time
    Searched refs:ConcurrentModificationException (Results 1 - 25 of 53) sorted by null

1 2 3

  /libcore/luni/src/main/java/java/util/
ConcurrentModificationException.java 21 * An {@code ConcurrentModificationException} is thrown when a Collection is
27 public class ConcurrentModificationException extends RuntimeException {
32 * Constructs a new {@code ConcurrentModificationException} with the current
35 public ConcurrentModificationException() {
40 * Constructs a new {@code ConcurrentModificationException} with the current
46 public ConcurrentModificationException(String detailMessage) {
51 * Constructs a new {@code ConcurrentModificationException} with the given detail
55 public ConcurrentModificationException(String detailMessage, Throwable cause) {
60 * Constructs a new {@code ConcurrentModificationException} with the given cause.
63 public ConcurrentModificationException(Throwable cause)
    [all...]
AbstractList.java 62 throw new ConcurrentModificationException();
71 throw new ConcurrentModificationException();
77 throw new ConcurrentModificationException();
110 throw new ConcurrentModificationException();
133 throw new ConcurrentModificationException();
148 throw new ConcurrentModificationException();
254 throw new ConcurrentModificationException();
272 throw new ConcurrentModificationException();
285 throw new ConcurrentModificationException();
296 throw new ConcurrentModificationException();
    [all...]
LinkedList.java 102 throw new ConcurrentModificationException();
124 throw new ConcurrentModificationException();
141 throw new ConcurrentModificationException();
167 throw new ConcurrentModificationException();
179 throw new ConcurrentModificationException();
217 throw new ConcurrentModificationException();
237 throw new ConcurrentModificationException();
ArrayDeque.java 32 * ConcurrentModificationException}. Thus, in the face of concurrent
40 * throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
515 throw new ConcurrentModificationException();
608 throw new ConcurrentModificationException();
645 throw new ConcurrentModificationException();
LinkedHashMap.java 42 * may throw a {@code ConcurrentModificationException} if the map is structurally
347 throw new ConcurrentModificationException();
357 throw new ConcurrentModificationException();
ArrayList.java 573 throw new ConcurrentModificationException();
586 throw new ConcurrentModificationException();
IdentityHashMap.java 162 void checkConcurrentMod() throws ConcurrentModificationException {
164 throw new ConcurrentModificationException();
WeakHashMap.java 165 throw new ConcurrentModificationException();
179 throw new ConcurrentModificationException();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModificationExceptionTest.java 21 import java.util.ConcurrentModificationException;
51 * @tests java.util.ConcurrentModificationException#ConcurrentModificationException()
54 // Test for method java.util.ConcurrentModificationException()
65 } catch (ConcurrentModificationException e) {
72 fail("Failed to throw expected ConcurrentModificationException");
76 * @tests java.util.ConcurrentModificationException#ConcurrentModificationException(java.lang.String)
80 // java.util.ConcurrentModificationException(java.lang.String)
85 throw new ConcurrentModificationException(errorMessage)
    [all...]
AbstractListTest.java 23 import java.util.ConcurrentModificationException;
128 // ConcurrentModificationException does not occur on an AbstractList
261 } catch (ConcurrentModificationException cme) {
341 catch(ConcurrentModificationException e){
342 fail("Excepted to catch IllegalStateException not ConcurrentModificationException");
360 fail("Should throw ConcurrentModificationException.");
361 } catch (ConcurrentModificationException e) {}
364 fail("Should throw ConcurrentModificationException.");
365 } catch (ConcurrentModificationException e) {}
368 fail("Should throw ConcurrentModificationException.")
    [all...]
ConcurrentModTest.java 23 import java.util.ConcurrentModificationException;
55 fail("It should throws ConcurrentModificationException.");
56 } catch (ConcurrentModificationException e) {
85 fail("It should throws ConcurrentModificationException.");
86 } catch (ConcurrentModificationException e) {
115 fail("It should throws ConcurrentModificationException.");
116 } catch (ConcurrentModificationException e) {
145 fail("It should throws ConcurrentModificationException.");
146 } catch (ConcurrentModificationException e) {
178 fail("It should throws ConcurrentModificationException.")
    [all...]
RefSortedMap.java 29 import java.util.ConcurrentModificationException;
120 throw new ConcurrentModificationException();
128 throw new ConcurrentModificationException();
139 throw new ConcurrentModificationException();
  /libcore/luni/src/test/java/tests/api/java/util/
ConcurrentModificationExceptionTest.java 21 import java.util.ConcurrentModificationException;
51 * java.util.ConcurrentModificationException#ConcurrentModificationException()
54 // Test for method java.util.ConcurrentModificationException()
65 } catch (ConcurrentModificationException e) {
72 fail("Failed to throw expected ConcurrentModificationException");
76 * java.util.ConcurrentModificationException#ConcurrentModificationException(java.lang.String)
80 // java.util.ConcurrentModificationException(java.lang.String)
85 throw new ConcurrentModificationException(errorMessage)
    [all...]
ConcurrentModTest.java 23 import java.util.ConcurrentModificationException;
55 fail("It should throws ConcurrentModificationException.");
56 } catch (ConcurrentModificationException e) {
99 fail("It should throws ConcurrentModificationException.");
100 } catch (ConcurrentModificationException e) {
129 fail("It should throws ConcurrentModificationException.");
130 } catch (ConcurrentModificationException e) {
159 fail("It should throws ConcurrentModificationException.");
160 } catch (ConcurrentModificationException e) {
228 fail("It should throws ConcurrentModificationException.")
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/
OldLinkedHashMapTest.java 20 import java.util.ConcurrentModificationException;
45 fail("expected ConcurrentModificationException was not thrown.");
46 } catch(ConcurrentModificationException expected) {
TreeMapTest.java 20 import java.util.ConcurrentModificationException;
150 } catch (ConcurrentModificationException e) {
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayListMultimapTest.java 24 import java.util.ConcurrentModificationException;
76 * Test throwing ConcurrentModificationException when a sublist's ancestor's
93 fail("Expected ConcurrentModificationException");
94 } catch (ConcurrentModificationException expected) {}
LinkedHashMultisetTest.java 28 import java.util.ConcurrentModificationException;
130 } catch (ConcurrentModificationException expected) {}
  /libcore/luni/src/test/java/libcore/java/util/concurrent/
CopyOnWriteArrayListTest.java 20 import java.util.ConcurrentModificationException;
50 * operations will trigger ConcurrentModificationException.
60 } catch (ConcurrentModificationException expected) {
72 } catch (ConcurrentModificationException expected) {
85 } catch (ConcurrentModificationException expected) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
TreeMultiset.java 27 import java.util.ConcurrentModificationException;
199 throw new ConcurrentModificationException();
338 throw new ConcurrentModificationException();
AbstractMapBasedMultiset.java 29 import java.util.ConcurrentModificationException;
194 throw new ConcurrentModificationException();
  /external/guava/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 32 import java.util.ConcurrentModificationException;
197 throw new ConcurrentModificationException();
TreeMultiset.java 30 import java.util.ConcurrentModificationException;
203 throw new ConcurrentModificationException();
342 throw new ConcurrentModificationException();
MinMaxPriorityQueue.java 33 import java.util.ConcurrentModificationException;
827 throw new ConcurrentModificationException();
852 * {@link ConcurrentModificationException}. Thus, in the face of concurrent
860 * throw {@code ConcurrentModificationException} on a best-effort basis.
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 26 import java.util.ConcurrentModificationException;
44 * ConcurrentModificationException}. When an iterator is created, it keeps a
178 * they trigger a {@link ConcurrentModificationException}.
191 * will they trigger a {@link ConcurrentModificationException}.
684 throw new ConcurrentModificationException();

Completed in 1167 milliseconds

1 2 3