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

123

/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/persist/
H A DBasicIterator.java47 public boolean hasNext() { method in class:BasicIterator
61 if (hasNext()) {
/macosx-10.10.1/JavaScriptCore-7600.1.17/heap/
H A DListableHandler.h73 bool hasNext() function in class:JSC::ListableHandler::List
94 while (hasNext())
/macosx-10.10.1/BerkeleyDB-21/db/java/src/com/sleepycat/collections/
H A DStoredCollection.java221 while (i.hasNext()) {
244 while (j < a.length && i.hasNext()) {
249 } else if (i.hasNext()) {
251 while (i.hasNext()) {
273 while (i.hasNext()) {
304 while (i.hasNext()) {
354 while (i.hasNext()) {
386 while (i.hasNext()) {
423 while (i.hasNext()) list.add(i.next());
444 while (i.hasNext()) {
[all...]
H A DStoredList.java285 if (!i.hasNext()) {
292 while (i.hasNext()) {
299 while (i.hasNext()) {
539 while (i1.hasNext()) {
540 if (!i2.hasNext()) return false;
550 if (i2.hasNext()) return false;
H A DStoredIterator.java136 * This method conforms to the {@link Iterator#hasNext} interface.
142 public boolean hasNext() { method in class:StoredIterator
281 return hasNext() ? (cursor.getCurrentRecordNumber() -
444 if (hasNext()) {
492 * FindBugs whines about us ignoring the return value from hasNext().
494 hasNext();
526 * <p>After being closed, only the {@link #hasNext} and {@link
H A DBlockIterator.java300 public boolean hasNext() { method in class:BlockIterator
473 if (hasNext()) {
502 return hasNext() ? (getRecordNumber(nextIndex) -
632 if (!hasPrev && !hasNext()) {
H A DStoredEntrySet.java136 while (i.hasNext()) {
/macosx-10.10.1/ICU-531.30/icuSources/test/intltest/
H A Dsfwdchit.h60 virtual UBool hasNext();
H A Dsfwdchit.cpp118 UBool SimpleFwdCharIterator::hasNext() { function in class:SimpleFwdCharIterator
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...]
/macosx-10.10.1/BerkeleyDB-21/db/test/scr024/src/com/sleepycat/collections/test/
H A DCollectionTest.java658 assertTrue(!iter.hasNext());
783 assertTrue(iter.hasNext());
811 assertTrue(iter.hasNext());
817 assertTrue(!iter.hasNext());
953 while (iter.hasNext()) {
957 assertTrue(!iter.hasNext());
971 while (iter.hasNext()) {
978 assertTrue(!iter.hasNext());
997 assertTrue(iter.hasNext());
1001 assertTrue(iter.hasNext());
[all...]
H A DIterDeadlockTest.java160 assertTrue(i2.hasNext());
191 assertTrue(i1.hasNext());
H A DJoinTest.java225 assertTrue(i.hasNext());
228 assertFalse(i.hasNext());
/macosx-10.10.1/ICU-531.30/icuSources/common/unicode/
H A Dresbund.h288 hasNext(void) const;
H A Duchriter.h280 virtual UBool hasNext();
H A Dchariter.h63 * <li>The hasNext() function returns FALSE.</li>
72 * while(it.hasNext()) {
171 virtual UBool hasNext() = 0;
212 * that can be used analogously to hasNext().
217 * Forward iteration with hasNext():
221 * for(it.setToStart(); it.hasNext();) {
H A Duiter.h145 * Function type declaration for UCharIterator.hasNext().
408 UCharIteratorHasNext *hasNext; member in struct:UCharIterator
/macosx-10.10.1/ICU-531.30/icuSources/samples/uciter8/
H A Duciter8.c107 if(!iter1->hasNext(iter1)) {
108 log_err("%s->hasNext() at the start returns FALSE\n", n1);
117 if(!iter2->hasNext(iter2)) {
118 log_err("%s->hasNext() at the start returns FALSE\n", n2);
131 if(iter1->hasNext(iter1)) {
132 log_err("%s->hasNext() at the end returns TRUE\n", n1);
135 if(iter2->hasNext(iter2)) {
136 log_err("%s->hasNext() at the end returns TRUE\n", n2);
/macosx-10.10.1/JavaScriptCore-7600.1.17/icu/unicode/
H A Duiter.h145 * Function type declaration for UCharIterator.hasNext().
408 UCharIteratorHasNext *hasNext; member in struct:UCharIterator
/macosx-10.10.1/WTF-7600.1.24/icu/unicode/
H A Duiter.h145 * Function type declaration for UCharIterator.hasNext().
408 UCharIteratorHasNext *hasNext; member in struct:UCharIterator
/macosx-10.10.1/WebKit-7600.1.25/mac/icu/unicode/
H A Duiter.h145 * Function type declaration for UCharIterator.hasNext().
408 UCharIteratorHasNext *hasNext; member in struct:UCharIterator
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/index/
H A DSample.java261 while (iterator.hasNext()) {
274 while (iterator.hasNext()) {
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DSourceMap.js191 if (!stringCharIterator.hasNext())
272 hasNext: function() method in class:WebInspector.SourceMap.StringCharIterator
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/hello/
H A DHelloDatabaseWorld.java150 while (iter.hasNext()) {
/macosx-10.10.1/BerkeleyDB-21/db/examples_java/src/collections/ship/basic/
H A DSample.java248 while (iterator.hasNext()) {

Completed in 292 milliseconds

123