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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/util/
NoSuchElementException.java 38 class NoSuchElementException extends RuntimeException {
42 * Constructs a <code>NoSuchElementException</code> with <tt>null</tt>
45 public NoSuchElementException() {
50 * Constructs a <code>NoSuchElementException</code>, saving a reference
56 public NoSuchElementException(String s) {
InputMismatchException.java 38 class InputMismatchException extends NoSuchElementException {
AbstractSequentialList.java 89 } catch (NoSuchElementException exc) {
119 } catch (NoSuchElementException exc) {
147 } catch (NoSuchElementException exc) {
175 } catch (NoSuchElementException exc) {
222 } catch (NoSuchElementException exc) {
AbstractQueue.java 110 * @throws NoSuchElementException if this queue is empty
117 throw new NoSuchElementException();
129 * @throws NoSuchElementException if this queue is empty
136 throw new NoSuchElementException();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/icu/android_icu4j/src/main/java/android/icu/util/
UResourceBundleIterator.java 13 import java.util.NoSuchElementException;
57 * @throws NoSuchElementException If there does not exist such an element.
59 public UResourceBundle next()throws NoSuchElementException{
63 throw new NoSuchElementException();
68 * @throws NoSuchElementException If there does not exist such an element.
71 public String nextString()throws NoSuchElementException, UResourceTypeMismatchException{
75 throw new NoSuchElementException();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
UResourceBundleIterator.java 12 import java.util.NoSuchElementException;
57 * @throws NoSuchElementException If there does not exist such an element.
60 public UResourceBundle next()throws NoSuchElementException{
64 throw new NoSuchElementException();
69 * @throws NoSuchElementException If there does not exist such an element.
73 public String nextString()throws NoSuchElementException, UResourceTypeMismatchException{
77 throw new NoSuchElementException();
  /external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/helpers/
NullEnumeration.java 21 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/smali/util/src/main/java/org/jf/util/
AbstractForwardSequentialList.java 39 import java.util.NoSuchElementException;
45 throw new NoSuchElementException();
62 } catch (NoSuchElementException ex) {
76 throw new NoSuchElementException();
105 throw new NoSuchElementException();
  /external/guava/guava/src/com/google/common/collect/
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();
ForwardingQueue.java 21 import java.util.NoSuchElementException;
103 } catch (NoSuchElementException caught) {
118 } catch (NoSuchElementException caught) {
AbstractSequentialIterator.java 21 import java.util.NoSuchElementException;
72 throw new NoSuchElementException();
PeekingIterator.java 22 import java.util.NoSuchElementException;
43 * @throws NoSuchElementException if the iteration has no more elements
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
SkipNullsIterator.java 20 import java.util.NoSuchElementException;
45 throw new NoSuchElementException();
  /external/guava/guava-tests/test/com/google/common/collect/
UnmodifiableIteratorTest.java 24 import java.util.NoSuchElementException;
46 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();
  /external/turbine/java/com/google/turbine/binder/lookup/
LookupKey.java 21 import java.util.NoSuchElementException;
59 throw new NoSuchElementException();
  /frameworks/support/collection/src/test/java/androidx/collection/
ArraySetCompatTest.java 26 import java.util.NoSuchElementException;
42 } catch (NoSuchElementException expected) {
  /libcore/ojluni/src/main/java/sun/misc/
CompoundEnumeration.java 29 import java.util.NoSuchElementException;
59 throw new NoSuchElementException();
  /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();
  /prebuilts/jdk/jdk8/linux-x86/sample/lambda/DefaultMethods/
ArrayIterator.java 33 import java.util.NoSuchElementException;
71 * @throws NoSuchElementException if the iteration has no more
89 throw new NoSuchElementException();
  /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 {

Completed in 1106 milliseconds

1 2 3 4 5 6 7 8 91011>>