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

1 2 3 4 5 6 7

  /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) {
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();
  /external/guava/guava/src/com/google/common/collect/
AbstractSequentialIterator.java 21 import java.util.NoSuchElementException;
72 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();
171 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();
  /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();
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
DominatorReferenceIterator.java 20 import java.util.NoSuchElementException;
54 throw new NoSuchElementException();
SkipNullsIterator.java 20 import java.util.NoSuchElementException;
45 throw new NoSuchElementException();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
SortedMultisets.java 26 import java.util.NoSuchElementException;
84 throw new NoSuchElementException();
  /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/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();
  /external/turbine/java/com/google/turbine/binder/lookup/
LookupKey.java 21 import java.util.NoSuchElementException;
59 throw new NoSuchElementException();
  /libcore/ojluni/src/main/java/java/nio/file/
FileTreeIterator.java 33 import java.util.NoSuchElementException;
114 throw new NoSuchElementException();
  /libcore/ojluni/src/main/java/sun/util/
ResourceBundleEnumeration.java 30 import java.util.NoSuchElementException;
79 throw new NoSuchElementException();
  /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() {}
  /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();
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractPath.java 32 import java.util.NoSuchElementException;
84 throw new NoSuchElementException();

Completed in 608 milliseconds

1 2 3 4 5 6 7