OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ConcurrentModificationException
(Results
1 - 25
of
111
) sorted by null
1
2
3
4
5
/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.
738
throw new
ConcurrentModificationException
();
831
throw new
ConcurrentModificationException
();
837
throw new
ConcurrentModificationException
();
846
throw new
ConcurrentModificationException
();
[
all
...]
IdentityHashMap.java
105
* will throw a {@link
ConcurrentModificationException
}. Thus, in the
113
* throw <tt>
ConcurrentModificationException
</tt> on a best-effort basis.
740
throw new
ConcurrentModificationException
();
754
throw new
ConcurrentModificationException
();
[
all
...]
LinkedHashMap.java
127
*
ConcurrentModificationException
}. Thus, in the face of concurrent
134
* throw <tt>
ConcurrentModificationException
</tt> on a best-effort basis.
402
throw new
ConcurrentModificationException
();
411
throw new
ConcurrentModificationException
();
550
throw new
ConcurrentModificationException
();
561
throw new
ConcurrentModificationException
();
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
();
/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/ojluni/src/main/java/sun/security/provider/certpath/
CollectionCertStore.java
32
import java.util.
ConcurrentModificationException
;
139
} catch (
ConcurrentModificationException
e) { }
141
throw new
ConcurrentModificationException
("Too many "
180
} catch (
ConcurrentModificationException
e) { }
182
throw new
ConcurrentModificationException
("Too many "
/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) {
HashMapTest.java
19
import java.util.
ConcurrentModificationException
;
94
} catch(
ConcurrentModificationException
expected) {}
HashtableTest.java
19
import java.util.
ConcurrentModificationException
;
94
} 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) {
/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/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) {
/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) {
Completed in 923 milliseconds
1
2
3
4
5