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

123456

/external/apache-http/src/org/apache/http/
H A DHeaderElementIterator.java50 boolean hasNext(); method in interface:HeaderElementIterator
54 * This method should only be called while {@link #hasNext hasNext}
H A DHeaderIterator.java51 boolean hasNext() method in interface:HeaderIterator
57 * This method should only be called while {@link #hasNext hasNext}
H A DTokenIterator.java54 boolean hasNext() method in interface:TokenIterator
60 * This method should only be called while {@link #hasNext hasNext}
/external/guava/src/com/google/common/collect/
H A DForwardingIterator.java39 public boolean hasNext() { method in class:ForwardingIterator
40 return delegate().hasNext();
H A DIterators.java56 public boolean hasNext() {
78 /*@Override*/ public boolean hasNext() {
108 public boolean hasNext() {
109 return iterator.hasNext();
119 * will be left exhausted: its {@code hasNext()} method will return
124 while (iterator.hasNext()) {
137 while (iterator.hasNext()) {
143 while (iterator.hasNext()) {
155 * {@code hasNext()} method will return {@code false}.
165 while (removeFrom.hasNext()) {
957 public boolean hasNext() { method in class:Iterators.PeekingImpl
[all...]
H A DAbstractIterator.java31 * #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() { method in class:AbstractIterator
145 if (!hasNext()) {
160 if (!hasNext()) {
[all...]
H A DLexicographicalOrdering.java42 while (left.hasNext()) {
43 if (!right.hasNext()) {
51 if (right.hasNext()) {
H A DAbstractMultiset.java90 public boolean hasNext() { method in class:AbstractMultiset.MultisetIterator
91 return laterCount > 0 || entryIterator.hasNext();
95 if (!hasNext()) {
190 while (entries.hasNext()) {
228 public boolean hasNext() {
229 return entryIterator.hasNext();
H A DOrdering.java420 if (it.hasNext()) {
422 while (it.hasNext()) {
441 if (it.hasNext()) {
443 while (it.hasNext()) {
469 while (iterator.hasNext()) {
529 while (iterator.hasNext()) {
H A DLinkedListMultimap.java259 for (Iterator<V> i = new ValueForKeyIterator(key); i.hasNext();) {
277 public boolean hasNext() { method in class:LinkedListMultimap.NodeIterator
299 public boolean hasNext() { method in class:LinkedListMultimap.DistinctKeyIterator
360 public boolean hasNext() { method in class:LinkedListMultimap.ValueForKeyIterator
432 for (Iterator<Node<K, V>> i = new NodeIterator(); i.hasNext();) {
441 for (Iterator<V> i = new ValueForKeyIterator(key); i.hasNext();) {
465 while (values.hasNext()) {
508 while (keyValues.hasNext() && newValues.hasNext()) {
514 while (keyValues.hasNext()) {
[all...]
H A DAbstractMapBasedMultiset.java103 public boolean hasNext() {
104 return backingEntries.hasNext();
197 public boolean hasNext() { method in class:AbstractMapBasedMultiset.MapBasedMultisetIterator
198 return occurrencesLeft > 0 || entryIterator.hasNext();
359 public boolean hasNext() {
360 return entries.hasNext();
395 while (i.hasNext()) {
/external/easymock/src/org/easymock/internal/matchers/
H A DAnd.java45 for (Iterator<IArgumentMatcher> it = matchers.iterator(); it.hasNext();) {
47 if (it.hasNext()) {
H A DOr.java45 for (Iterator<IArgumentMatcher> it = matchers.iterator(); it.hasNext();) {
47 if (it.hasNext()) {
/external/apache-http/src/org/apache/http/impl/
H A DDefaultConnectionReuseStrategy.java115 if (!hit.hasNext())
141 if (hit.hasNext()) {
145 while (ti.hasNext()) {
/external/icu4c/common/
H A Dunorm_it.c58 UBool hasPrevious, hasNext, isStackAllocated; member in struct:UNormIterator
75 uni->hasNext=iter->hasNext(iter);
76 } else if(!iter->hasNext(iter)) {
79 uni->hasNext=FALSE;
84 uni->hasPrevious=uni->hasNext=TRUE;
187 /* normalize forward from the limit, assume hasNext is true */
213 uni->hasNext=FALSE;
229 uni->hasNext=FALSE;
241 uni->hasNext
[all...]
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCookieStore.java88 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
141 for (Iterator<Cookie> it = cookies.iterator(); it.hasNext();) {
H A DDefaultConnectionKeepAliveStrategy.java62 while (it.hasNext()) {
/external/emma/core/java12/com/vladium/util/
H A DXProperties.java48 for (Iterator i = _propertyNames.iterator (); i.hasNext (); )
67 for (Iterator i = _propertyNames.iterator (); i.hasNext (); )
/external/proguard/src/proguard/
H A DTargeter.java66 while (iterator.hasNext())
71 if (iterator.hasNext())
/external/proguard/src/proguard/classfile/
H A DClassPool.java111 while (iterator.hasNext())
127 while (iterator.hasNext())
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElementIterator.java85 while (this.headerIt.hasNext()) {
106 while (this.headerIt.hasNext() || this.cursor != null) {
132 public boolean hasNext() { method in class:BasicHeaderElementIterator
H A DBasicTokenIterator.java96 public boolean hasNext() { method in class:BasicTokenIterator
173 if (!this.headerIt.hasNext()) {
256 if (this.headerIt.hasNext()) {
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DElementList.java35 for (Iterator c = m_contents.iterator (); c.hasNext (); )
/external/icu4c/test/intltest/
H A Dsfwdchit.h60 virtual UBool hasNext();
/external/guava/src/com/google/common/base/
H A DJoiner.java87 if (iterator.hasNext()) {
89 while (iterator.hasNext()) {
209 while (iterator.hasNext()) {
216 while (iterator.hasNext()) {
267 if (iterator.hasNext()) {
272 while (iterator.hasNext()) {

Completed in 212 milliseconds

123456