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

1 2 3 4 5 6 7 8 91011

  /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) {
InputMismatchException.java 28 public class InputMismatchException extends NoSuchElementException implements
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();
  /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...]
  /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) {
InputMismatchExceptionTest.java 20 import java.util.NoSuchElementException;
37 assertTrue(exception instanceof NoSuchElementException);
  /external/guava/guava/src/com/google/common/collect/
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();
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();
AbstractIterator.java 23 import java.util.NoSuchElementException;
154 throw new NoSuchElementException();
169 throw new NoSuchElementException();
ForwardingQueue.java 22 import java.util.NoSuchElementException;
104 } catch (NoSuchElementException caught) {
119 } catch (NoSuchElementException caught) {
AbstractLinkedIterator.java 22 import java.util.NoSuchElementException;
73 throw new NoSuchElementException();
PeekingIterator.java 22 import java.util.NoSuchElementException;
39 * @throws NoSuchElementException if the iteration has no more elements
EmptyContiguousSet.java 20 import java.util.NoSuchElementException;
38 throw new NoSuchElementException();
42 throw new NoSuchElementException();
54 throw new NoSuchElementException();
58 throw new NoSuchElementException();
  /external/smack/src/org/jivesoftware/smack/util/collections/
AbstractEmptyIterator.java 19 import java.util.NoSuchElementException;
42 throw new NoSuchElementException("Iterator contains no elements");
50 throw new NoSuchElementException("Iterator contains no elements");
  /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/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/guava/guava-tests/test/com/google/common/collect/
UnmodifiableIteratorTest.java 24 import java.util.NoSuchElementException;
46 throw new NoSuchElementException();
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...]
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 35 import java.util.NoSuchElementException;
139 * @throws NoSuchElementException if there are no more headers
142 throws NoSuchElementException {
146 throw new NoSuchElementException("Iteration already finished.");
161 * @throws NoSuchElementException if there are no more headers
164 throws NoSuchElementException {
BasicListHeaderIterator.java 36 import java.util.NoSuchElementException;
152 * @throws NoSuchElementException if there are no more headers
155 throws NoSuchElementException {
159 throw new NoSuchElementException("Iteration already finished.");
175 * @throws NoSuchElementException if there are no more headers
178 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) {
  /external/guava/guava/src/com/google/common/base/
AbstractIterator.java 24 import java.util.NoSuchElementException;
75 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();

Completed in 723 milliseconds

1 2 3 4 5 6 7 8 91011