Searched refs:hasNext (Results 1 - 25 of 734) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntIterator.java29 boolean hasNext(); method in interface:IntIterator
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DTokenStream.java33 boolean hasNext(); method in interface:TokenStream
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_MapTest2.java43 .hasNext());
45 .hasNext());
47 .hasNext());
57 .hasNext());
59 .hasNext());
61 .hasNext());
/external/apache-http/src/org/apache/http/
H A DHeaderElementIterator.java55 boolean hasNext(); method in interface:HeaderElementIterator
59 * This method should only be called while {@link #hasNext hasNext}
H A DHeaderIterator.java56 boolean hasNext() method in interface:HeaderIterator
62 * This method should only be called while {@link #hasNext hasNext}
H A DTokenIterator.java59 boolean hasNext() method in interface:TokenIterator
65 * This method should only be called while {@link #hasNext hasNext}
/external/guava/guava-tests/test/com/google/common/base/
H A DAbstractIteratorTest.java57 assertTrue(iter.hasNext());
60 // verify idempotence of hasNext()
61 assertTrue(iter.hasNext());
62 assertTrue(iter.hasNext());
63 assertTrue(iter.hasNext());
66 assertFalse(iter.hasNext());
69 assertFalse(iter.hasNext());
94 iter.hasNext();
104 iter.hasNext();
120 iter.hasNext();
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DUnmodifiableIteratorTest.java40 public boolean hasNext() {
45 if (!hasNext()) {
52 assertTrue(iterator.hasNext());
H A DAbstractIteratorTest.java57 assertTrue(iter.hasNext());
60 // verify idempotence of hasNext()
61 assertTrue(iter.hasNext());
62 assertTrue(iter.hasNext());
63 assertTrue(iter.hasNext());
66 assertFalse(iter.hasNext());
69 assertFalse(iter.hasNext());
102 assertTrue(iter.hasNext());
176 iter.hasNext();
186 iter.hasNext();
[all...]
H A DUnmodifiableListIteratorTest.java37 assertTrue(iterator.hasNext());
48 assertTrue(iterator.hasNext());
61 assertTrue(iterator.hasNext());
77 public boolean hasNext() {
82 if (!hasNext()) {
/external/guava/guava/src/com/google/common/collect/
H A DForwardingIterator.java42 public boolean hasNext() { method in class:ForwardingIterator
43 return delegate().hasNext();
H A DSingletonImmutableList.java66 boolean hasNext = start == 0;
68 @Override public boolean hasNext() {
69 return hasNext;
73 return !hasNext;
77 if (!hasNext) {
80 hasNext = false;
85 return hasNext ? 0 : 1;
89 if (hasNext) {
92 hasNext = true;
97 return hasNext
[all...]
H A DAbstractIterator.java32 * #hasNext} method. But many data sources, such as {@link
45 * while (in.hasNext()) {
91 * <p>The initial invocation of {@link #hasNext()} or {@link #next()} calls
92 * this method, as does the first invocation of {@code hasNext} or {@code
98 * {@code hasNext} or {@code next} invocation that invoked this method. Any
102 * <p>The implementation of this method may not invoke the {@code hasNext},
109 * will propagate outward to the {@code hasNext()}, {@code next()}, or
129 public final boolean hasNext() { method in class:AbstractIterator
153 if (!hasNext()) {
168 if (!hasNext()) {
[all...]
H A DAbstractLinkedIterator.java66 public final boolean hasNext() { method in class:AbstractLinkedIterator
72 if (!hasNext()) {
H A DIterators.java66 public boolean hasNext() {
89 @Override public boolean hasNext() {
123 public boolean hasNext() {
124 return iterator.hasNext();
146 * will be left exhausted: its {@code hasNext()} method will return
151 while (iterator.hasNext()) {
164 while (iterator.hasNext()) {
170 while (iterator.hasNext()) {
182 * {@code hasNext()} method will return {@code false}.
192 while (removeFrom.hasNext()) {
1162 public boolean hasNext() { method in class:Iterators.PeekingImpl
[all...]
/external/hamcrest/src/org/hamcrest/internal/
H A DSelfDescribingValueIterator.java14 public boolean hasNext() { method in class:SelfDescribingValueIterator
15 return values.hasNext();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DFixedSizeSet.java49 @Override public boolean hasNext() { return index < size(); }
53 if (!hasNext()) {
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRStreamEnumerator.h43 -(BOOL) hasNext;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRStreamEnumerator.h43 -(BOOL) hasNext;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRStreamEnumerator.h43 -(BOOL) hasNext;
/external/guava/guava/src/com/google/common/base/
H A DPairwiseEquivalence.java41 while (iteratorA.hasNext() && iteratorB.hasNext()) {
47 return !iteratorA.hasNext() && !iteratorB.hasNext();
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DMapIterator.java36 * while (it.hasNext()) {
54 boolean hasNext(); method in interface:MapIterator
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPIteratorImpl.java142 * @see java.util.Iterator#hasNext()
144 public boolean hasNext() method in class:XMPIteratorImpl
146 return nodeIterator.hasNext();
262 * @see Iterator#hasNext()
264 public boolean hasNext() method in class:XMPIteratorImpl.NodeIterator
268 // hasNext has been called before
284 boolean hasNext = iterateChildren(childrenIterator);
286 if (!hasNext && visitedNode.hasQualifier() && !getOptions().isOmitQualifiers())
290 hasNext = hasNext();
554 public boolean hasNext() method in class:XMPIteratorImpl.NodeIteratorChildren
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCollectionUtils.java30 for (Iterator it = c.iterator(); it.hasNext();) {
43 for (Iterator it = source.keySet().iterator(); it.hasNext();) {
51 while (it.hasNext()) {
61 for (Iterator it = c.iterator(); it.hasNext();) {
70 for (Iterator it = list.iterator(); it.hasNext();) {
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterators.java64 public boolean hasNext() {
87 @Override public boolean hasNext() {
121 public boolean hasNext() {
122 return iterator.hasNext();
144 * will be left exhausted: its {@code hasNext()} method will return
149 while (iterator.hasNext()) {
162 while (iterator.hasNext()) {
168 while (iterator.hasNext()) {
180 * {@code hasNext()} method will return {@code false}.
190 while (removeFrom.hasNext()) {
1126 public boolean hasNext() { method in class:Iterators.PeekingImpl
[all...]

Completed in 516 milliseconds

1234567891011>>