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

1 2

  /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
56 public ConcurrentModificationException(String detailMessage, Throwable cause) {
61 * Constructs a new {@code ConcurrentModificationException} with the given cause.
65 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 34 * ConcurrentModificationException}. Thus, in the face of concurrent
42 * throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
511 throw new ConcurrentModificationException();
604 throw new ConcurrentModificationException();
641 throw new ConcurrentModificationException();
LinkedHashMap.java 42 * may throw a {@code ConcurrentModificationException} if the map is structurally
350 throw new ConcurrentModificationException();
360 throw new ConcurrentModificationException();
ArrayList.java 569 throw new ConcurrentModificationException();
582 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();
ArrayDequeTest.java 23 import java.util.ConcurrentModificationException;
608 fail("should throw ConcurrentModificationException");
609 } catch (ConcurrentModificationException e) {
    [all...]
  /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...]
ArrayListTest.java 26 import java.util.ConcurrentModificationException;
579 fail("should throw a ConcurrentModificationException");
580 } catch (ConcurrentModificationException ioobe) {
HashtableTest.java 23 import java.util.ConcurrentModificationException;
546 } catch (ConcurrentModificationException e) {
  /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;
149 } catch (ConcurrentModificationException e) {
  /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) {
  /frameworks/base/tests/CoreTests/android/core/
MiscRegressionTest.java 30 import java.util.ConcurrentModificationException;
242 fail("expected ConcurrentModificationException was not thrown.");
243 } catch(ConcurrentModificationException e) {
254 } catch(ConcurrentModificationException e) {
255 fail("expected ConcurrentModificationException was not thrown.");
  /libcore/luni/src/main/java/org/apache/harmony/luni/util/
TwoKeyHashMap.java 25 import java.util.ConcurrentModificationException;
426 throw new ConcurrentModificationException();
444 throw new ConcurrentModificationException();
  /external/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 30 import java.util.ConcurrentModificationException;
216 throw new ConcurrentModificationException();
AbstractMultimap.java 32 import java.util.ConcurrentModificationException;
412 throw new ConcurrentModificationException();
505 throw new ConcurrentModificationException();
    [all...]
  /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 1000 milliseconds

1 2