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

1 2 3 4 5 6

  /libcore/ojluni/src/main/java/java/util/
ConcurrentModificationException.java 52 * throw {@code ConcurrentModificationException} on a best-effort basis.
54 * exception for its correctness: <i>{@code ConcurrentModificationException}
70 public class ConcurrentModificationException extends RuntimeException {
74 * Constructs a ConcurrentModificationException with no
77 public ConcurrentModificationException() {
81 * Constructs a {@code ConcurrentModificationException} with the
86 public ConcurrentModificationException(String message) {
101 public ConcurrentModificationException(Throwable cause) {
121 public ConcurrentModificationException(String message, Throwable cause) {
ArrayList.java 81 * {@link ConcurrentModificationException}. Thus, in the face of
89 * throw {@code ConcurrentModificationException} on a best-effort basis.
115 * Fix ConcurrentModificationException in ArrayList iterators.
766 throw new ConcurrentModificationException();
    [all...]
IdentityHashMap.java 104 * will throw a {@link ConcurrentModificationException}. Thus, in the
112 * throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
734 throw new ConcurrentModificationException();
748 throw new ConcurrentModificationException();
    [all...]
  /libcore/ojluni/src/main/java/java/nio/file/
DirectoryIteratorException.java 28 import java.util.ConcurrentModificationException;
44 extends ConcurrentModificationException
  /frameworks/support/compat/tests/java/android/support/v4/util/
SimpleArrayMapTest.java 26 import java.util.ConcurrentModificationException;
39 * Attempt to generate a ConcurrentModificationException in ArrayMap.
62 } catch (ConcurrentModificationException e) {
77 } catch (ConcurrentModificationException e) {
94 } catch (ConcurrentModificationException e) {
  /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...]
  /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) {
RemoveIfTester.java 20 import java.util.ConcurrentModificationException;
96 } catch (ConcurrentModificationException expected) {
WeakHashMapTest.java 21 import java.util.ConcurrentModificationException;
49 } catch (ConcurrentModificationException expected) {
ForEachRemainingTester.java 22 import java.util.ConcurrentModificationException;
103 } catch (ConcurrentModificationException expected) {
122 } catch (ConcurrentModificationException expected) {
HashtableTest.java 19 import java.util.ConcurrentModificationException;
100 } catch(ConcurrentModificationException expected) {}
  /frameworks/base/core/tests/coretests/src/android/util/
ArrayMapTest.java 22 import java.util.ConcurrentModificationException;
32 * Attempt to generate a ConcurrentModificationException in ArrayMap.
36 * catch this and throw ConcurrentModificationException instead of crashing somewhere in its
56 } catch (ConcurrentModificationException e) {
77 } catch (ConcurrentModificationException e) {
102 } catch (ConcurrentModificationException e) {
  /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) {
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
ProtobufArrayListTest.java 38 import java.util.ConcurrentModificationException;
77 } catch (ConcurrentModificationException e) {
86 } catch (ConcurrentModificationException e) {
95 } catch (ConcurrentModificationException e) {
  /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) {
  /frameworks/support/compat/java/android/support/v4/util/
SimpleArrayMap.java 21 import java.util.ConcurrentModificationException;
79 throw new ConcurrentModificationException();
278 throw new ConcurrentModificationException();
299 throw new ConcurrentModificationException();
440 throw new ConcurrentModificationException();
461 throw new ConcurrentModificationException();
538 throw new ConcurrentModificationException();
566 throw new ConcurrentModificationException();
  /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) {

Completed in 412 milliseconds

1 2 3 4 5 6