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

1 2 3 4

  /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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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...]
AbstractListTest.java 23 import java.util.ConcurrentModificationException;
128 // ConcurrentModificationException does not occur on an AbstractList
261 } catch (ConcurrentModificationException cme) {
404 } catch (ConcurrentModificationException e) {
405 fail("Excepted to catch IllegalStateException not ConcurrentModificationException");
422 fail("Should throw ConcurrentModificationException.");
423 } catch (ConcurrentModificationException e) {
427 fail("Should throw ConcurrentModificationException.");
428 } catch (ConcurrentModificationException e) {
432 fail("Should throw ConcurrentModificationException.")
    [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) {
CollectionsTest.java 23 import java.util.ConcurrentModificationException;
114 } catch (ConcurrentModificationException expected) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapClearTester.java 29 import java.util.ConcurrentModificationException;
58 fail("Expected ConcurrentModificationException");
59 } catch (ConcurrentModificationException expected) {
72 fail("Expected ConcurrentModificationException");
73 } catch (ConcurrentModificationException expected) {
86 fail("Expected ConcurrentModificationException");
87 } catch (ConcurrentModificationException expected) {
MapRemoveTester.java 32 import java.util.ConcurrentModificationException;
66 fail("Expected ConcurrentModificationException");
67 } catch (ConcurrentModificationException expected) {
80 fail("Expected ConcurrentModificationException");
81 } catch (ConcurrentModificationException expected) {
94 fail("Expected ConcurrentModificationException");
95 } catch (ConcurrentModificationException expected) {
CollectionClearTester.java 29 import java.util.ConcurrentModificationException;
82 fail("Expected ConcurrentModificationException");
83 } catch (ConcurrentModificationException expected) {
CollectionAddTester.java 33 import java.util.ConcurrentModificationException;
105 fail("Expected ConcurrentModificationException");
106 } catch (ConcurrentModificationException expected) {
ListRemoveAtIndexTester.java 30 import java.util.ConcurrentModificationException;
94 fail("Expected ConcurrentModificationException");
95 } catch (ConcurrentModificationException expected) {
MapPutTester.java 33 import java.util.ConcurrentModificationException;
75 fail("Expected ConcurrentModificationException");
76 } catch (ConcurrentModificationException expected) {
88 fail("Expected ConcurrentModificationException");
89 } catch (ConcurrentModificationException expected) {
101 fail("Expected ConcurrentModificationException");
102 } catch (ConcurrentModificationException expected) {
CollectionAddAllTester.java 35 import java.util.ConcurrentModificationException;
113 fail("Expected ConcurrentModificationException");
114 } catch (ConcurrentModificationException expected) {
CollectionRemoveTester.java 32 import java.util.ConcurrentModificationException;
64 fail("Expected ConcurrentModificationException");
65 } catch (ConcurrentModificationException expected) {
ListAddAtIndexTester.java 33 import java.util.ConcurrentModificationException;
81 fail("Expected ConcurrentModificationException");
82 } catch (ConcurrentModificationException expected) {
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
CollectionAddTester.java 30 import java.util.ConcurrentModificationException;
102 fail("Expected ConcurrentModificationException");
103 } catch (ConcurrentModificationException expected) {
MapPutTester.java 30 import java.util.ConcurrentModificationException;
72 fail("Expected ConcurrentModificationException");
73 } catch (ConcurrentModificationException expected) {
85 fail("Expected ConcurrentModificationException");
86 } catch (ConcurrentModificationException expected) {
98 fail("Expected ConcurrentModificationException");
99 } catch (ConcurrentModificationException expected) {
CollectionAddAllTester.java 32 import java.util.ConcurrentModificationException;
110 fail("Expected ConcurrentModificationException");
111 } catch (ConcurrentModificationException expected) {
ListAddAtIndexTester.java 30 import java.util.ConcurrentModificationException;
78 fail("Expected ConcurrentModificationException");
79 } catch (ConcurrentModificationException expected) {
  /external/jetty/src/java/org/eclipse/jetty/server/nio/
NetworkTrafficSelectChannelConnector.java 24 import java.util.ConcurrentModificationException;
36 * been started without causing {@link ConcurrentModificationException}s.</p>
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
AbstractMultisetSetCountTester.java 33 import java.util.ConcurrentModificationException;
196 fail("Expected ConcurrentModificationException");
197 } catch (ConcurrentModificationException expected) {
209 fail("Expected ConcurrentModificationException");
210 } catch (ConcurrentModificationException expected) {
258 fail("Expected ConcurrentModificationException");
259 } catch (ConcurrentModificationException expected) {
272 fail("Expected ConcurrentModificationException");
273 } catch (ConcurrentModificationException expected) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
AbstractMultisetSetCountTester.java 37 import java.util.ConcurrentModificationException;
201 fail("Expected ConcurrentModificationException");
202 } catch (ConcurrentModificationException expected) {
214 fail("Expected ConcurrentModificationException");
215 } catch (ConcurrentModificationException expected) {
263 fail("Expected ConcurrentModificationException");
264 } catch (ConcurrentModificationException expected) {
277 fail("Expected ConcurrentModificationException");
278 } catch (ConcurrentModificationException expected) {
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ArrayListMultimapTest.java 26 import java.util.ConcurrentModificationException;
78 * Test throwing ConcurrentModificationException when a sublist's ancestor's
95 fail("Expected ConcurrentModificationException");
96 } catch (ConcurrentModificationException expected) {}
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
MathRuntimeException.java 25 import java.util.ConcurrentModificationException;
472 * Constructs a new <code>ConcurrentModificationException</code> with specified formatted detail message.
480 public static ConcurrentModificationException createConcurrentModificationException(final String pattern,
486 * Constructs a new <code>ConcurrentModificationException</code> with specified formatted detail message.
493 public static ConcurrentModificationException createConcurrentModificationException(final Localizable pattern,
495 return new ConcurrentModificationException() {

Completed in 656 milliseconds

1 2 3 4