HomeSort by relevance Sort by last modified time
    Searched defs:hasNext (Results 251 - 275 of 1386) sorted by null

<<11121314151617181920>>

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultimap.java 527 public boolean hasNext() {
528 return mapIterator.hasNext() || valueIterator.hasNext();
533 if (!valueIterator.hasNext()) {
LinkedListMultimap.java 342 public boolean hasNext() {
418 public boolean hasNext() {
488 public boolean hasNext() {
609 while (keyValues.hasNext() && newValues.hasNext()) {
615 while (keyValues.hasNext()) {
621 while (newValues.hasNext()) {
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
JoinerTest.java 336 @Override public boolean hasNext() {
337 return iterator.hasNext();
  /external/guava/guava-tests/test/com/google/common/base/
JoinerTest.java 338 @Override public boolean hasNext() {
339 return iterator.hasNext();
  /external/guava/guava-tests/test/com/google/common/collect/
LinkedListMultimapTest.java 292 assertFalse(entries.hasNext());
315 assertFalse(entries.hasNext());
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TextTrieMap.java 205 * @see java.util.Iterator#hasNext()
208 public boolean hasNext() {
343 while (chitr.hasNext()) {
353 if (!chitr.hasNext()) {
418 while (litr.hasNext()) {
445 if(!chitr.hasNext()) {
  /external/icu/icu4c/source/i18n/
collationiterator.cpp 70 UBool hasNext() const { return pos < oldBuffer.length(); }
72 // Requires hasNext().
81 U_ASSERT(!hasNext());
472 if(skipped != NULL && skipped->hasNext()) { return skipped->next(); }
667 if(!skipped->hasNext()) { break; }
    [all...]
  /external/icu/icu4c/source/test/intltest/
ucharstrietest.cpp 883 errln("trie.current()!=hasNext before end of %s (at index %d)", data[i].s, j);
    [all...]
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/
TransliterationChart.java 114 while(rit.hasNext()) {
125 while (sit.hasNext()) {
143 while (sit.hasNext()) {
168 while (cit.hasNext()) {
219 while (i1.hasNext() && i2.hasNext()) {
225 if (i1.hasNext()) return 1;
226 if (i2.hasNext()) return -1;
266 while (it.hasNext()) {
280 public boolean hasNext() {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TextTrieMap.java 203 * @see java.util.Iterator#hasNext()
206 public boolean hasNext() {
341 while (chitr.hasNext()) {
351 if (!chitr.hasNext()) {
416 while (litr.hasNext()) {
443 if(!chitr.hasNext()) {
  /external/javassist/src/main/javassist/bytecode/
Descriptor.java 814 public boolean hasNext() {
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 84 while (iter.hasNext()) {
99 while (iter.hasNext()) {
119 while (iter.hasNext()) {
366 i.hasNext();
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
RouteSelectorTest.java 85 assertTrue(routeSelector.hasNext());
90 assertFalse(routeSelector.hasNext());
102 assertTrue(routeSelector.hasNext());
108 assertFalse(routeSelector.hasNext());
121 assertTrue(routeSelector.hasNext());
126 assertFalse(routeSelector.hasNext());
136 assertTrue(routeSelector.hasNext());
141 assertFalse(routeSelector.hasNext());
153 assertTrue(routeSelector.hasNext());
158 assertFalse(routeSelector.hasNext());
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlLexer.java 226 } else if (splitter.hasNext()) {
234 while (lookahead.size() <= i && splitter.hasNext()) {
718 public final boolean hasNext() {
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Internal.java 533 public boolean hasNext() {
534 return realIterator.hasNext();
MapFieldLite.java 519 public boolean hasNext() {
520 return delegate.hasNext();
SmallSortedMap.java 539 public boolean hasNext() {
541 getOverflowIterator().hasNext();
594 public boolean hasNext() {
  /external/testng/src/main/java/org/testng/internal/
MethodHelper.java 349 public boolean hasNext() {
  /external/turbine/java/com/google/turbine/zip/
Zip.java 120 public boolean hasNext() {
  /frameworks/base/core/java/android/util/
MapCollections.java 49 public boolean hasNext() {
55 if (!hasNext()) throw new NoSuchElementException();
85 public boolean hasNext() {
91 if (!hasNext()) throw new NoSuchElementException();
203 while (it.hasNext()) {
382 while (it.hasNext()) {
460 while (it.hasNext()) {
471 while (it.hasNext()) {
480 while (it.hasNext()) {
  /frameworks/base/core/java/android/util/jar/
StrictJarFile.java 277 public boolean hasNext() {
300 while (entryIterator.hasNext()) {
  /frameworks/support/collection/src/main/java/androidx/collection/
MapCollections.java 47 public boolean hasNext() {
53 if (!hasNext()) throw new NoSuchElementException();
83 public boolean hasNext() {
89 if (!hasNext()) throw new NoSuchElementException();
201 while (it.hasNext()) {
380 while (it.hasNext()) {
458 while (it.hasNext()) {
469 while (it.hasNext()) {
478 while (it.hasNext()) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
AbstractMapTest.java 300 public boolean hasNext() {
AbstractQueueTest.java 46 public boolean hasNext() {
51 if (!hasNext()) {
  /libcore/ojluni/src/main/java/java/lang/
ProcessEnvironment.java 331 public boolean hasNext() {return i.hasNext();}
373 public boolean hasNext() {return i.hasNext();}
400 public boolean hasNext() {return i.hasNext();}

Completed in 609 milliseconds

<<11121314151617181920>>