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

1 2 3 4 5 6 7 8

  /dalvik/dexgen/src/com/android/dexgen/util/
IntIterator.java 29 boolean hasNext();
  /dalvik/dx/src/com/android/dx/util/
IntIterator.java 29 boolean hasNext();
  /external/apache-http/src/org/apache/http/
HeaderElementIterator.java 50 boolean hasNext();
54 * This method should only be called while {@link #hasNext hasNext}
HeaderIterator.java 51 boolean hasNext()
57 * This method should only be called while {@link #hasNext hasNext}
TokenIterator.java 54 boolean hasNext()
60 * This method should only be called while {@link #hasNext hasNext}
  /libcore/luni/src/main/java/java/util/
Iterator.java 24 * methods {@code next} and {@code hasNext()} may throw a {@code ConcurrentModificationException}.
40 public boolean hasNext();
48 * @see #hasNext
ListIterator.java 48 public boolean hasNext();
65 * @see #hasNext
  /external/guava/src/com/google/common/collect/
ForwardingIterator.java 39 public boolean hasNext() {
40 return delegate().hasNext();
AbstractIterator.java 31 * #hasNext} method. But many data sources, such as {@link
44 * while (in.hasNext()) {
85 * <p>The initial invocation of {@link #hasNext()} or {@link #next()} calls
86 * this method, as does the first invocation of {@code hasNext} or {@code
92 * {@code hasNext} or {@code next} invocation that invoked this method. Any
96 * <p>The implementation of this method may not invoke the {@code hasNext},
103 * will propagate outward to the {@code hasNext()}, {@code next()}, or
122 public final boolean hasNext() {
145 if (!hasNext()) {
160 if (!hasNext()) {
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
TextUtils_SimpleStringSplitterTest.java 50 notes = "Test hasNext method",
51 method = "hasNext",
56 assertFalse(simpleStringSplitter.hasNext());
59 assertTrue(simpleStringSplitter.hasNext());
62 assertTrue(simpleStringSplitter.hasNext());
65 assertFalse(simpleStringSplitter.hasNext());
68 assertFalse(simpleStringSplitter.hasNext());
82 assertFalse(iterator.hasNext());
87 assertTrue(iterator.hasNext());
89 assertTrue(iterator.hasNext());
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/
AllThemesIterator.java 43 public boolean hasNext() {
SingleLayoutIterator.java 42 public boolean hasNext() {
SingleThemeIterator.java 43 public boolean hasNext() {
SingleThemeLayoutIterator.java 30 private boolean hasNext = true;
40 public boolean hasNext() {
41 return hasNext;
52 hasNext = false;
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 129 public boolean hasNext() {
BasicListHeaderIterator.java 142 public boolean hasNext() {
  /external/icu4c/test/intltest/
sfwdchit.cpp 118 UBool SimpleFwdCharIterator::hasNext() {
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalueiterator.cpp 88 bool QScriptValueIterator::hasNext() const
90 return d_ptr->hasNext();
99 \sa hasNext(), previous(), name()
111 \sa previous(), hasNext()
  /frameworks/base/core/java/android/content/
CursorEntityIterator.java 58 public final boolean hasNext() {
60 throw new IllegalStateException("calling hasNext() when the iterator is closed");
73 * @see EntityIterator#hasNext()
79 if (!hasNext()) {
80 throw new IllegalStateException("you may only call next() if hasNext() is true");
  /frameworks/base/core/java/android/util/
FastImmutableArraySet.java 64 public boolean hasNext() {
  /frameworks/base/drm/common/
DrmConstraints.cpp 61 bool DrmConstraints::KeyIterator::hasNext() {
104 bool DrmConstraints::Iterator::hasNext() {
DrmInfoRequest.cpp 68 bool DrmInfoRequest::KeyIterator::hasNext() {
97 bool DrmInfoRequest::Iterator::hasNext() {
DrmMetadata.cpp 64 bool DrmMetadata::KeyIterator::hasNext() {
109 bool DrmMetadata::Iterator::hasNext() {
  /libcore/luni/src/main/java/libcore/util/
CollectionUtils.java 47 while (next == null && delegate.hasNext()) {
55 @Override public boolean hasNext() {
61 if (!hasNext()) {
  /libcore/luni/src/test/java/libcore/java/util/
ServiceLoaderTest.java 25 assertFalse(ServiceLoader.load(UnimplementedInterface.class).iterator().hasNext());
33 assertTrue(it.hasNext());
35 assertTrue(it.hasNext());
37 assertFalse(it.hasNext());

Completed in 311 milliseconds

1 2 3 4 5 6 7 8