| /libcore/ojluni/src/main/java/java/util/ |
| AbstractList.java | 380 throw new ConcurrentModificationException(); 386 throw new ConcurrentModificationException(); 429 throw new ConcurrentModificationException(); 443 throw new ConcurrentModificationException(); 476 * {@code ConcurrentModificationException} if it is not. 584 * iterator) will throw a {@code ConcurrentModificationException} in 769 throw new ConcurrentModificationException();
|
| Vector.java | 55 * {@link ConcurrentModificationException}. Thus, in the face of 64 * throw {@code ConcurrentModificationException} on a best-effort basis. [all...] |
| Map.java | 614 * @throws ConcurrentModificationException if an entry is found to be 628 throw new ConcurrentModificationException(ise); 669 * @throws ConcurrentModificationException if an entry is found to be 683 throw new ConcurrentModificationException(ise); 693 throw new ConcurrentModificationException(ise); [all...] |
| PriorityQueue.java | 535 throw new ConcurrentModificationException(); 549 throw new ConcurrentModificationException(); 881 throw new ConcurrentModificationException(); [all...] |
| LinkedHashMap.java | 126 * ConcurrentModificationException}. Thus, in the face of concurrent 133 * throw <tt>ConcurrentModificationException</tt> on a best-effort basis. 595 throw new ConcurrentModificationException(); 645 throw new ConcurrentModificationException(); 709 throw new ConcurrentModificationException(); 723 throw new ConcurrentModificationException(); 734 throw new ConcurrentModificationException(); 757 throw new ConcurrentModificationException(); 770 throw new ConcurrentModificationException();
|
| WeakHashMap.java | 110 * ConcurrentModificationException}. Thus, in the face of concurrent 117 * throw <tt>ConcurrentModificationException</tt> on a best-effort basis. 189 * @see ConcurrentModificationException 806 throw new ConcurrentModificationException(); 821 throw new ConcurrentModificationException(); [all...] |
| ArrayDeque.java | 66 * ConcurrentModificationException}. Thus, in the face of concurrent 74 * throw {@code ConcurrentModificationException} on a best-effort basis. 531 throw new ConcurrentModificationException(); 625 throw new ConcurrentModificationException(); 654 throw new ConcurrentModificationException(); 681 throw new ConcurrentModificationException(); [all...] |
| /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
| 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...] |
| RefSortedMap.java | 29 import java.util.ConcurrentModificationException; 120 throw new ConcurrentModificationException(); 128 throw new ConcurrentModificationException(); 139 throw new ConcurrentModificationException();
|
| /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/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/ |
| 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/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
| 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) {
|
| /frameworks/base/core/java/android/util/ |
| ArrayMap.java | 22 import java.util.ConcurrentModificationException; 107 throw new ConcurrentModificationException(); 319 throw new ConcurrentModificationException(); 355 throw new ConcurrentModificationException(); 502 throw new ConcurrentModificationException(); 523 throw new ConcurrentModificationException(); 666 throw new ConcurrentModificationException(); 694 throw new ConcurrentModificationException(); [all...] |
| /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() {
|
| /external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
| OpenIntToDoubleHashMap.java | 23 import java.util.ConcurrentModificationException; 35 * <code>ConcurrentModificationException</code> when they detect the map has been 236 * <code>ConcurrentModificationException</code> when they detect the map 524 * @exception ConcurrentModificationException if the map is modified during iteration 528 throws ConcurrentModificationException, NoSuchElementException { 541 * @exception ConcurrentModificationException if the map is modified during iteration 545 throws ConcurrentModificationException, NoSuchElementException { 557 * @exception ConcurrentModificationException if the map is modified during iteration 561 throws ConcurrentModificationException, NoSuchElementException {
|
| OpenIntToFieldHashMap.java | 23 import java.util.ConcurrentModificationException; 37 * <code>ConcurrentModificationException</code> when they detect the map has been 248 * <code>ConcurrentModificationException</code> when they detect the map 536 * @exception ConcurrentModificationException if the map is modified during iteration 540 throws ConcurrentModificationException, NoSuchElementException { 553 * @exception ConcurrentModificationException if the map is modified during iteration 557 throws ConcurrentModificationException, NoSuchElementException { 569 * @exception ConcurrentModificationException if the map is modified during iteration 573 throws ConcurrentModificationException, NoSuchElementException {
|
| /external/protobuf/java/core/src/test/java/com/google/protobuf/ |
| BooleanArrayListTest.java | 38 import java.util.ConcurrentModificationException; 89 } catch (ConcurrentModificationException e) { 98 } catch (ConcurrentModificationException e) {
|
| IntArrayListTest.java | 38 import java.util.ConcurrentModificationException; 89 } catch (ConcurrentModificationException e) { 98 } catch (ConcurrentModificationException e) {
|
| DoubleArrayListTest.java | 38 import java.util.ConcurrentModificationException; 89 } catch (ConcurrentModificationException e) { 98 } catch (ConcurrentModificationException e) {
|
| FloatArrayListTest.java | 38 import java.util.ConcurrentModificationException; 89 } catch (ConcurrentModificationException e) { 98 } catch (ConcurrentModificationException e) {
|
| LazyStringArrayListTest.java | 38 import java.util.ConcurrentModificationException; 196 } catch (ConcurrentModificationException e) { 205 } catch (ConcurrentModificationException e) {
|
| LongArrayListTest.java | 38 import java.util.ConcurrentModificationException; 89 } catch (ConcurrentModificationException e) { 98 } catch (ConcurrentModificationException e) {
|
| /libcore/ojluni/src/main/java/java/util/concurrent/ |
| CopyOnWriteArrayList.java | 41 import java.util.ConcurrentModificationException; 72 * guaranteed not to throw {@code ConcurrentModificationException}. [all...] |