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

12 3 4

  /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 {
  /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) {
  /libcore/luni/src/main/java/java/util/
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
346 throw new ConcurrentModificationException();
356 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();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
RefSortedMap.java 29 import java.util.ConcurrentModificationException;
120 throw new ConcurrentModificationException();
128 throw new ConcurrentModificationException();
139 throw new ConcurrentModificationException();
HashtableTest.java 25 import java.util.ConcurrentModificationException;
546 } catch (ConcurrentModificationException e) {
  /external/guava/guava/src/com/google/common/collect/
AbstractMapBasedMultiset.java 31 import java.util.ConcurrentModificationException;
190 throw new ConcurrentModificationException();
LinkedListMultimap.java 33 import java.util.ConcurrentModificationException;
342 throw new ConcurrentModificationException();
418 throw new ConcurrentModificationException();
HashBiMap.java 31 import java.util.ConcurrentModificationException;
339 throw new ConcurrentModificationException();
LinkedHashMultimap.java 32 import java.util.ConcurrentModificationException;
364 throw new ConcurrentModificationException();
MinMaxPriorityQueue.java 34 import java.util.ConcurrentModificationException;
826 throw new ConcurrentModificationException();
851 * {@link ConcurrentModificationException}. Thus, in the face of concurrent
859 * throw {@code ConcurrentModificationException} on a best-effort basis.
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultiset.java 28 import java.util.ConcurrentModificationException;
187 throw new ConcurrentModificationException();
LinkedListMultimap.java 29 import java.util.ConcurrentModificationException;
338 throw new ConcurrentModificationException();
414 throw new ConcurrentModificationException();
LinkedHashMultimap.java 28 import java.util.ConcurrentModificationException;
360 throw new ConcurrentModificationException();
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
MapPutAllTester.java 33 import java.util.ConcurrentModificationException;
107 fail("Expected ConcurrentModificationException");
108 } catch (ConcurrentModificationException expected) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionRemoveAllTester.java 34 import java.util.ConcurrentModificationException;
86 fail("Expected ConcurrentModificationException");
87 } catch (ConcurrentModificationException expected) {
MapPutAllTester.java 36 import java.util.ConcurrentModificationException;
110 fail("Expected ConcurrentModificationException");
111 } catch (ConcurrentModificationException expected) {
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayListMultimapTest.java 34 import java.util.ConcurrentModificationException;
115 * Test throwing ConcurrentModificationException when a sublist's ancestor's
132 fail("Expected ConcurrentModificationException");
133 } catch (ConcurrentModificationException expected) {}
  /libcore/luni/src/test/java/libcore/java/util/
TreeMapTest.java 20 import java.util.ConcurrentModificationException;
150 } catch (ConcurrentModificationException e) {
  /external/guava/guava-tests/benchmark/com/google/common/util/concurrent/
MonitorBasedPriorityBlockingQueue.java 24 import java.util.ConcurrentModificationException;
510 * ConcurrentModificationException}, and guarantees to traverse

Completed in 326 milliseconds

12 3 4