OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nosuchelementexception
(Results
1 - 25
of
294
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/libcore/luni/src/test/java/tests/api/java/util/
NoSuchElementExceptionTest.java
20
import java.util.
NoSuchElementException
;
26
* java.util.
NoSuchElementException
#
NoSuchElementException
()
29
// Test for method java.util.
NoSuchElementException
()
31
assertNotNull(new
NoSuchElementException
());
36
fail("
NoSuchElementException
expected");
37
} catch (
NoSuchElementException
e) {
43
* java.util.
NoSuchElementException
#
NoSuchElementException
(java.lang.String)
46
// Test for method java.util.
NoSuchElementException
(java.lang.String
[
all
...]
AbstractQueueTest.java
24
import java.util.
NoSuchElementException
;
52
throw new
NoSuchElementException
();
264
fail("should throw
NoSuchElementException
");
265
} catch (
NoSuchElementException
e) {
283
fail("should throw
NoSuchElementException
");
284
} catch (
NoSuchElementException
e) {
295
fail("should throw
NoSuchElementException
");
296
} catch (
NoSuchElementException
e) {
StringTokenizerTest.java
20
import java.util.
NoSuchElementException
;
145
"nextElement failed to throw a
NoSuchElementException
when it should have been out of elements");
146
} catch (
NoSuchElementException
e) {
171
"nextToken failed to throw a
NoSuchElementException
when it should have been out of elements");
172
} catch (
NoSuchElementException
e) {
199
fail("
NoSuchElementException
expected");
200
} catch (
NoSuchElementException
e) {
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
NoSuchElementExceptionTest.java
20
import java.util.
NoSuchElementException
;
26
* @tests java.util.
NoSuchElementException
#
NoSuchElementException
()
29
// Test for method java.util.
NoSuchElementException
()
34
} catch (
NoSuchElementException
e) {
42
* @tests java.util.
NoSuchElementException
#
NoSuchElementException
(java.lang.String)
45
// Test for method java.util.
NoSuchElementException
(java.lang.String)
50
} catch (
NoSuchElementException
e) {
AbstractQueueTest.java
23
import java.util.
NoSuchElementException
;
50
throw new
NoSuchElementException
();
248
fail("should throw
NoSuchElementException
");
249
} catch (
NoSuchElementException
e) {
267
fail("should throw
NoSuchElementException
");
268
} catch (
NoSuchElementException
e) {
279
fail("should throw
NoSuchElementException
");
280
} catch (
NoSuchElementException
e) {
InputMismatchExceptionTest.java
20
import java.util.
NoSuchElementException
;
37
assertTrue(exception instanceof
NoSuchElementException
);
/libcore/luni/src/main/java/java/util/
NoSuchElementException.java
25
public class
NoSuchElementException
extends RuntimeException {
30
* Constructs a new {@code
NoSuchElementException
} with the current stack
33
public
NoSuchElementException
() {
37
* Constructs a new {@code
NoSuchElementException
} with the current stack
43
public
NoSuchElementException
(String detailMessage) {
ListIterator.java
63
* @throws
NoSuchElementException
74
* @throws
NoSuchElementException
84
* @throws
NoSuchElementException
95
* @throws
NoSuchElementException
/libcore/luni/src/test/java/libcore/java/util/
CollectionsTest.java
24
import java.util.
NoSuchElementException
;
36
} catch (
NoSuchElementException
expected) {
55
} catch (
NoSuchElementException
expected) {
78
} catch (
NoSuchElementException
expected) {
84
} catch (
NoSuchElementException
expected) {
OldListIteratorTest.java
23
import java.util.
NoSuchElementException
;
51
fail("
NoSuchElementException
expected");
52
} catch (
NoSuchElementException
e) {
139
fail("
NoSuchElementException
expected");
140
} catch (
NoSuchElementException
e) {
153
fail("
NoSuchElementException
expected");
154
} catch (
NoSuchElementException
e) {
/external/guava/guava-tests/test/com/google/common/collect/
AbstractIteratorTest.java
24
import java.util.
NoSuchElementException
;
74
} catch (
NoSuchElementException
expected) {
111
fail("peek() should throw
NoSuchElementException
at end");
112
} catch (
NoSuchElementException
expected) {
117
fail("peek() should continue to throw
NoSuchElementException
at end");
118
} catch (
NoSuchElementException
expected) {
123
fail("next() should throw
NoSuchElementException
as usual");
124
} catch (
NoSuchElementException
expected) {
129
fail("peek() should still throw
NoSuchElementException
after next()");
130
} catch (
NoSuchElementException
expected)
[
all
...]
UnmodifiableListIteratorTest.java
25
import java.util.
NoSuchElementException
;
83
throw new
NoSuchElementException
();
95
throw new
NoSuchElementException
();
UnmodifiableIteratorTest.java
24
import java.util.
NoSuchElementException
;
46
throw new
NoSuchElementException
();
/external/guava/guava/src/com/google/common/collect/
EmptyContiguousSet.java
20
import java.util.
NoSuchElementException
;
38
throw new
NoSuchElementException
();
42
throw new
NoSuchElementException
();
54
throw new
NoSuchElementException
();
58
throw new
NoSuchElementException
();
AbstractIndexedListIterator.java
24
import java.util.
NoSuchElementException
;
48
* first element (or throw {@link
NoSuchElementException
} if {@code size} is
82
throw new
NoSuchElementException
();
100
throw new
NoSuchElementException
();
DiscreteDomain.java
22
import java.util.
NoSuchElementException
;
89
* <p>The default implementation throws {@code
NoSuchElementException
}.
92
* @throws
NoSuchElementException
if the type has no (practical) minimum
96
throw new
NoSuchElementException
();
104
* <p>The default implementation throws {@code
NoSuchElementException
}.
107
* @throws
NoSuchElementException
if the type has no (practical) maximum
111
throw new
NoSuchElementException
();
EmptyImmutableSortedSet.java
23
import java.util.
NoSuchElementException
;
96
throw new
NoSuchElementException
();
101
throw new
NoSuchElementException
();
PeekingIterator.java
22
import java.util.
NoSuchElementException
;
39
* @throws
NoSuchElementException
if the iteration has no more elements
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EmptyContiguousSet.java
18
import java.util.
NoSuchElementException
;
36
throw new
NoSuchElementException
();
40
throw new
NoSuchElementException
();
52
throw new
NoSuchElementException
();
56
throw new
NoSuchElementException
();
/external/nist-sip/java/gov/nist/javax/sip/message/
HeaderIterator.java
30
import java.util.
NoSuchElementException
;
49
public Object next() throws
NoSuchElementException
{
51
throw new
NoSuchElementException
();
57
public Object previous() throws
NoSuchElementException
{
59
throw new
NoSuchElementException
();
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
MyPermissionCollection.java
23
import java.util.
NoSuchElementException
;
45
throw new
NoSuchElementException
();
/external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java
17
import java.util.
NoSuchElementException
;
47
throw new
NoSuchElementException
();
/external/jmonkeyengine/engine/src/android/com/jme3/util/
RingBuffer.java
4
import java.util.
NoSuchElementException
;
71
throw new
NoSuchElementException
();
/external/guava/guava/src/com/google/common/base/
AbstractIterator.java
24
import java.util.
NoSuchElementException
;
75
throw new
NoSuchElementException
();
/packages/inputmethods/LatinIME/tools/maketext/src/com/android/inputmethod/latin/maketext/
LabelText.java
21
import java.util.
NoSuchElementException
;
51
} catch (
NoSuchElementException
e) {
Completed in 1366 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>