OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:nosuchelementexception
(Results
26 - 50
of
862
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/guava/guava/src/com/google/common/collect/
EmptyImmutableSortedSet.java
24
import java.util.
NoSuchElementException
;
98
throw new
NoSuchElementException
();
103
throw new
NoSuchElementException
();
DiscreteDomain.java
24
import java.util.
NoSuchElementException
;
238
* <p>The default implementation throws {@code
NoSuchElementException
}.
241
* @throws
NoSuchElementException
if the type has no (practical) minimum
245
throw new
NoSuchElementException
();
253
* <p>The default implementation throws {@code
NoSuchElementException
}.
256
* @throws
NoSuchElementException
if the type has no (practical) maximum
260
throw new
NoSuchElementException
();
AbstractNavigableMap.java
24
import java.util.
NoSuchElementException
;
69
throw new
NoSuchElementException
();
79
throw new
NoSuchElementException
();
ForwardingQueue.java
21
import java.util.
NoSuchElementException
;
103
} catch (
NoSuchElementException
caught) {
118
} catch (
NoSuchElementException
caught) {
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
SortedSetNavigationTester.java
29
import java.util.
NoSuchElementException
;
70
} catch (
NoSuchElementException
e) {
79
} catch (
NoSuchElementException
e) {
CollectionIteratorTester.java
37
import java.util.
NoSuchElementException
;
117
fail("iterator.next() should throw
NoSuchElementException
");
118
} catch (
NoSuchElementException
expected) {}
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
Source.java
24
import java.util.
NoSuchElementException
;
108
* @throws
NoSuchElementException
111
public int getLineNumber(String tag) throws
NoSuchElementException
{
114
throw new
NoSuchElementException
("Unknown tag: " + tag);
/frameworks/support/collection/src/test/java/androidx/collection/
ArrayMapCompatTest.java
29
import java.util.
NoSuchElementException
;
59
} catch (
NoSuchElementException
expected) {
93
} catch (
NoSuchElementException
expected) {
119
} catch (
NoSuchElementException
expected) {
/dalvik/dx/src/com/android/multidex/
ArchivePathElement.java
24
import java.util.
NoSuchElementException
;
87
throw new
NoSuchElementException
();
/external/guava/guava/src/com/google/common/base/
AbstractIterator.java
24
import java.util.
NoSuchElementException
;
75
throw new
NoSuchElementException
();
/external/guava/guava-tests/test/com/google/common/collect/
AbstractRangeSetTest.java
23
import java.util.
NoSuchElementException
;
67
} catch (
NoSuchElementException
e) {
/external/turbine/java/com/google/turbine/binder/lookup/
LookupKey.java
21
import java.util.
NoSuchElementException
;
59
throw new
NoSuchElementException
();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
InputMismatchExceptionTest.java
20
import java.util.
NoSuchElementException
;
37
assertTrue(exception instanceof
NoSuchElementException
);
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) {
ArrayDequeTest.java
27
import java.util.
NoSuchElementException
;
207
fail("should throw
NoSuchElementException
");
208
} catch (
NoSuchElementException
e) {
228
fail("should throw
NoSuchElementException
");
229
} catch (
NoSuchElementException
e) {
283
fail("should throw
NoSuchElementException
");
284
} catch (
NoSuchElementException
e) {
306
fail("should throw
NoSuchElementException
");
307
} catch (
NoSuchElementException
e) {
448
fail("should throw
NoSuchElementException
");
[
all
...]
/libcore/ojluni/src/main/java/sun/misc/
CompoundEnumeration.java
29
import java.util.
NoSuchElementException
;
59
throw new
NoSuchElementException
();
/packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
MakeKeyboardText.java
21
import java.util.
NoSuchElementException
;
51
} catch (
NoSuchElementException
e) {
/external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java
35
import java.util.
NoSuchElementException
;
144
* @throws
NoSuchElementException
if there are no more headers
147
throws
NoSuchElementException
{
151
throw new
NoSuchElementException
("Iteration already finished.");
166
* @throws
NoSuchElementException
if there are no more headers
169
throws
NoSuchElementException
{
BasicListHeaderIterator.java
36
import java.util.
NoSuchElementException
;
157
* @throws
NoSuchElementException
if there are no more headers
160
throws
NoSuchElementException
{
164
throw new
NoSuchElementException
("Iteration already finished.");
180
* @throws
NoSuchElementException
if there are no more headers
183
throws
NoSuchElementException
{
/test/vts/harnesses/tradefed/src/com/android/tradefed/util/
VtsVendorConfigFileUtil.java
22
import java.util.
NoSuchElementException
;
134
* @throws
NoSuchElementException
136
public String GetVendorConfigVariable(String varName) throws
NoSuchElementException
{
139
throw new
NoSuchElementException
("config is empty");
145
throw new
NoSuchElementException
("config parsing error");
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
FastQueue.java
32
import java.util.
NoSuchElementException
;
81
throw new
NoSuchElementException
("queue index "+ absIndex +" > last index "+(data.size()-1));
84
throw new
NoSuchElementException
("queue index "+ absIndex +" < 0");
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/
CollectionIteratorTester.java
35
import java.util.
NoSuchElementException
;
115
fail("iterator.next() should throw
NoSuchElementException
");
116
} catch (
NoSuchElementException
expected) {}
/external/jsilver/src/com/google/clearsilver/jsilver/data/
UniqueStack.java
22
import java.util.
NoSuchElementException
;
126
* @throws
NoSuchElementException
- if the stack is empty
132
throw new
NoSuchElementException
();
/libcore/jsr166-tests/src/test/java/jsr166/
AbstractQueueTest.java
14
import java.util.
NoSuchElementException
;
98
} catch (
NoSuchElementException
success) {}
117
} catch (
NoSuchElementException
success) {}
/prebuilts/jdk/jdk8/darwin-x86/sample/lambda/DefaultMethods/
ArrayIterator.java
33
import java.util.
NoSuchElementException
;
71
* @throws
NoSuchElementException
if the iteration has no more
89
throw new
NoSuchElementException
();
Completed in 918 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>