OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:NoSuchElementException
(Results
1 - 25
of
108
) sorted by null
1
2
3
4
5
/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) {
AbstractQueue.java
81
* @throws
NoSuchElementException
if this queue is empty
88
throw new
NoSuchElementException
();
100
* @throws
NoSuchElementException
if this queue is empty
107
throw new
NoSuchElementException
();
StringTokenizer.java
167
* @throws
NoSuchElementException
178
* @throws
NoSuchElementException
208
throw new
NoSuchElementException
();
218
* @throws
NoSuchElementException
/external/guava/guava/src/com/google/common/collect/
AbstractLinkedIterator.java
22
import java.util.
NoSuchElementException
;
73
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
();
AbstractIterator.java
23
import java.util.
NoSuchElementException
;
154
throw new
NoSuchElementException
();
169
throw new
NoSuchElementException
();
EmptyContiguousSet.java
20
import java.util.
NoSuchElementException
;
38
throw new
NoSuchElementException
();
42
throw new
NoSuchElementException
();
54
throw new
NoSuchElementException
();
58
throw new
NoSuchElementException
();
EmptyImmutableSortedSet.java
23
import java.util.
NoSuchElementException
;
96
throw new
NoSuchElementException
();
101
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
;
46
throw new
NoSuchElementException
();
/external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java
17
import java.util.
NoSuchElementException
;
47
throw new
NoSuchElementException
();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/util/
TypeProtoUtils.java
40
import java.util.
NoSuchElementException
;
69
throw new
NoSuchElementException
();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
FixedSizeSet.java
37
import java.util.
NoSuchElementException
;
54
throw new
NoSuchElementException
();
VariableSizeIterator.java
39
import java.util.
NoSuchElementException
;
78
throw new
NoSuchElementException
();
VariableSizeLookaheadIterator.java
40
import java.util.
NoSuchElementException
;
68
throw new
NoSuchElementException
();
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
exception_type.h
97
class
NoSuchElementException
: public Exception {
99
NoSuchElementException
() throw() : Exception("No such element") {}
100
explicit
NoSuchElementException
(const char* message) throw()
102
virtual ~
NoSuchElementException
() throw() {}
/external/sfntly/cpp/src/sfntly/port/
exception_type.h
97
class
NoSuchElementException
: public Exception {
99
NoSuchElementException
() throw() : Exception("No such element") {}
100
explicit
NoSuchElementException
(const char* message) throw()
102
virtual ~
NoSuchElementException
() throw() {}
/external/guava/guava/src/com/google/common/base/
AbstractIterator.java
24
import java.util.
NoSuchElementException
;
75
throw new
NoSuchElementException
();
/libcore/luni/src/main/java/java/sql/
SQLException.java
22
import java.util.
NoSuchElementException
;
249
throw new
NoSuchElementException
();
/dalvik/dexgen/src/com/android/dexgen/util/
ListIntSet.java
19
import java.util.
NoSuchElementException
;
120
throw new
NoSuchElementException
();
/dalvik/dx/src/com/android/dx/util/
ListIntSet.java
19
import java.util.
NoSuchElementException
;
120
throw new
NoSuchElementException
();
/external/chromium_org/components/test/data/password_manager/
environment.py
12
from selenium.common.exceptions import
NoSuchElementException
139
except
NoSuchElementException
:
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
BoundedByteString.java
33
import java.util.
NoSuchElementException
;
154
throw new
NoSuchElementException
();
/external/dexmaker/src/dx/java/com/android/dx/util/
ListIntSet.java
19
import java.util.
NoSuchElementException
;
120
throw new
NoSuchElementException
();
/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
();
Completed in 986 milliseconds
1
2
3
4
5