Searched defs:hasNext (Results 76 - 100 of 157) sorted by relevance

1234567

/external/smack/src/org/apache/harmony/javax/security/auth/
H A DSubject.java436 while (it.hasNext()) {
443 while (it.hasNext()) {
452 while (it.hasNext()) {
575 while (it.hasNext()) {
703 for (Iterator<SST> it = iterator(); it.hasNext();) {
731 while (it.hasNext()) {
740 for (Iterator<SST> it = iterator(); it.hasNext();) {
763 public boolean hasNext() { method in class:Subject.SecureSet.SecureIterator
764 return iterator.hasNext();
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcitrtest.cpp65 virtual UBool hasNext() { return TRUE;}; function in class:SCharacterIterator
484 } while (iter.hasNext());
602 else if(iter.hasNext() == FALSE && i != text.length())
603 errln("Iterator reached end prematurely. Failed at hasNext");
616 if(iter.hasNext() == TRUE)
617 errln("hasNext() returned true at the end of the string");
622 if(iter.getIndex() != text.length() || iter.hasNext() != FALSE)
691 } while (iter.hasNext());
715 else if(iter.hasNext() == FALSE)
777 h=iter->hasNext(ite
996 virtual UBool hasNext() { function in class:SubCharIter
[all...]
H A Ducharstrietest.cpp881 errln("trie.current()!=hasNext before end of %s (at index %d)", data[i].s, j);
1022 if(!iter.hasNext()) {
1023 errln("trie iterator hasNext()=FALSE for item %d: %s", (int)i, data[i].s);
1026 UBool hasNext=iter.next(errorCode); local
1030 if(!hasNext) {
1049 if(iter.hasNext()) {
1050 errln("trie iterator hasNext()=TRUE after all items");
1052 UBool hasNext=iter.next(errorCode); local
1054 if(hasNext) {
/external/guava/guava/src/com/google/common/collect/
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...]
H A DMinMaxPriorityQueue.java756 @Override public boolean hasNext() { method in class:MinMaxPriorityQueue.QueueIterator
H A DMultisets.java517 while (iterator1.hasNext()) {
591 while (entryIterator.hasNext()) {
644 while (entryIterator.hasNext()) {
899 public boolean hasNext() { method in class:Multisets.MultisetIteratorImpl
900 return laterCount > 0 || entryIterator.hasNext();
905 if (!hasNext()) {
H A DSets.java101 if (!iterator.hasNext()) {
110 while (iterator.hasNext()) {
231 while (elements.hasNext()) {
655 return !iterator().hasNext();
1018 public boolean hasNext() {
1024 if (!hasNext()) {
1202 @Override public boolean hasNext() { method in class:Sets.PowerSet.BitFilteredSetIterator
H A DStandardTable.java204 while (iterator.hasNext()) {
313 @Override public boolean hasNext() { method in class:StandardTable.CellIterator
314 return rowIterator.hasNext() || columnIterator.hasNext();
318 if (!columnIterator.hasNext()) {
463 @Override public boolean hasNext() {
464 return iterator.hasNext();
545 while (iterator.hasNext()) {
619 while (iterator.hasNext()) {
713 while (iterator.hasNext()) {
995 @Override public boolean hasNext() { method in class:StandardTable.RowMap.EntryIterator
[all...]
H A DAbstractMultimap.java241 if (!values.iterator().hasNext()) {
279 if (!iterator.hasNext()) {
290 while (iterator.hasNext()) {
523 public boolean hasNext() { method in class:AbstractMultimap.WrappedCollection.WrappedIterator
525 return delegateIterator.hasNext();
899 public boolean hasNext() {
900 return entryIterator.hasNext();
1116 if (keyIterator.hasNext()) {
1131 public boolean hasNext() { method in class:AbstractMultimap.EntryIterator
1132 return keyIterator.hasNext() || valueIterato
1277 public boolean hasNext() { method in class:AbstractMultimap.AsMap.AsMapIterator
[all...]
/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...]
H A DSets.java98 if (!iterator.hasNext()) {
107 while (iterator.hasNext()) {
228 while (elements.hasNext()) {
643 return !iterator().hasNext();
1006 public boolean hasNext() {
1012 if (!hasNext()) {
1190 @Override public boolean hasNext() { method in class:Sets.PowerSet.BitFilteredSetIterator
/external/icu/icu4c/source/i18n/
H A Dcollationiterator.cpp68 UBool hasNext() const { return pos < oldBuffer.length(); } function in class:SkippedState
70 // Requires hasNext().
79 U_ASSERT(!hasNext());
470 if(skipped != NULL && skipped->hasNext()) { return skipped->next(); }
665 if(!skipped->hasNext()) { break; }
H A Dtimezone.cpp1584 UBool hasNext = TRUE; local
1585 while (hasNext) {
1589 hasNext = FALSE;
/external/icu/icu4c/source/test/intltest/
H A Dcitrtest.cpp65 virtual UBool hasNext() { return TRUE;}; function in class:SCharacterIterator
484 } while (iter.hasNext());
602 else if(iter.hasNext() == FALSE && i != text.length())
603 errln("Iterator reached end prematurely. Failed at hasNext");
616 if(iter.hasNext() == TRUE)
617 errln("hasNext() returned true at the end of the string");
622 if(iter.getIndex() != text.length() || iter.hasNext() != FALSE)
691 } while (iter.hasNext());
715 else if(iter.hasNext() == FALSE)
777 h=iter->hasNext(ite
996 virtual UBool hasNext() { function in class:SubCharIter
[all...]
H A Ducharstrietest.cpp881 errln("trie.current()!=hasNext before end of %s (at index %d)", data[i].s, j);
1022 if(!iter.hasNext()) {
1023 errln("trie iterator hasNext()=FALSE for item %d: %s", (int)i, data[i].s);
1026 UBool hasNext=iter.next(errorCode); local
1030 if(!hasNext) {
1049 if(iter.hasNext()) {
1050 errln("trie iterator hasNext()=TRUE after all items");
1052 UBool hasNext=iter.next(errorCode); local
1054 if(hasNext) {
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractHashedMap.java311 for (Iterator it = map.entrySet().iterator(); it.hasNext();) {
1118 public boolean hasNext() { method in class:AbstractHashedMap.HashIterator
1191 for (MapIterator it = mapIterator(); it.hasNext();) {
1275 while (it.hasNext()) {
1304 while (it.hasNext()) {
1323 boolean hasNext = it.hasNext();
1324 while (hasNext) {
1329 hasNext = it.hasNext();
[all...]
H A DAbstractReferenceMap.java499 while (iterator.hasNext()) {
524 for (Iterator<K> it = iterator(); it.hasNext();) {
548 for (Iterator<V> it = iterator(); it.hasNext();) {
742 // current and next entry; this assures that if hasNext()
760 public boolean hasNext() { method in class:AbstractReferenceMap.ReferenceIteratorBase
797 if (nextNull() && !hasNext()) {
980 for (MapIterator it = mapIterator(); it.hasNext();) {
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtree.py2716 def hasNext(self): member in class:RewriteRuleElementStream
/external/clang/include/clang/Sema/
H A DLookup.h569 bool hasNext() const { function in class:clang::LookupResult::Filter
/external/javassist/src/main/javassist/bytecode/
H A DCodeIterator.java170 public boolean hasNext() { return currentPos < endPos; } method in class:CodeIterator
273 while (hasNext()) {
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssTokens.java100 public boolean hasNext() { method in class:CssTokens.TokenIterator
111 if (!hasNext()) { throw new NoSuchElementException(); }
/external/chromium_org/third_party/icu/source/i18n/
H A Dtimezone.cpp1577 UBool hasNext = TRUE; local
1578 while (hasNext) {
1582 hasNext = FALSE;
H A Ddtptngen.cpp1023 for (it.set(*patternMap); it.hasNext(); ) {
1269 for (it.set(*patternMap); it.hasNext(); ) {
1932 PatternMapIterator::hasNext() { function in class:PatternMapIterator
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccaltst.c2287 UBool hasNext; /* does it have a next transition from starting point? If so we test inclusive from that */ member in struct:__anon12192
2333 if (U_FAILURE(status) || result != itemPtr->hasNext) {
2335 itemPtr->descrip, u_errorName(status), itemPtr->hasNext, result);
/external/icu/icu4c/source/test/cintltst/
H A Dccaltst.c2291 UBool hasNext; /* does it have a next transition from starting point? If so we test inclusive from that */ member in struct:__anon21991
2337 if (U_FAILURE(status) || result != itemPtr->hasNext) {
2339 itemPtr->descrip, u_errorName(status), itemPtr->hasNext, result);

Completed in 952 milliseconds

1234567