HomeSort by relevance Sort by last modified time
    Searched defs:NoSuchElementException (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /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;
45 throw new NoSuchElementException();
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 17 import java.util.NoSuchElementException;
47 throw new NoSuchElementException();
  /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();
BitIntSet.java 19 import java.util.NoSuchElementException;
112 throw new NoSuchElementException();
  /dalvik/dx/src/com/android/dx/util/
ListIntSet.java 19 import java.util.NoSuchElementException;
120 throw new NoSuchElementException();
BitIntSet.java 19 import java.util.NoSuchElementException;
112 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();
  /external/guava/guava-tests/test/com/google/common/collect/
UnmodifiableListIteratorTest.java 25 import java.util.NoSuchElementException;
83 throw new NoSuchElementException();
95 throw new NoSuchElementException();
  /external/jmonkeyengine/engine/src/android/com/jme3/util/
RingBuffer.java 4 import java.util.NoSuchElementException;
71 throw new NoSuchElementException();
  /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();
  /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();
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
UnboundedFifoByteBuffer.java 23 import java.util.NoSuchElementException;
232 throw new NoSuchElementException();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
RefSortedMap.java 32 import java.util.NoSuchElementException;
131 throw new NoSuchElementException();
156 } catch (NoSuchElementException e) {
174 throw new NoSuchElementException();
183 throw new NoSuchElementException();
199 throw new NoSuchElementException();
206 throw new NoSuchElementException();

Completed in 1055 milliseconds

1 2 3 4