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

<<11121314151617181920>>

  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
SpinedBufferTest.java 129 assertFalse(it.hasNext());
204 assertFalse(it.hasNext());
279 assertFalse(it.hasNext());
355 assertFalse(it.hasNext());
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterChanSatRepresentation.java 186 while (sreader.hasNext()) {
190 sreader.hasNext();
192 sreader.hasNext();
194 sreader.hasNext();
196 sreader.hasNext();
198 sreader.hasNext();
200 sreader.hasNext();
202 sreader.hasNext();
204 sreader.hasNext();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
Action.java 133 public Builder hasNext(boolean hasNext) {
134 mHasNext = hasNext;
156 boolean hasNext, boolean infoOnly, Intent intent, int checkSetId, boolean enabled) {
164 mHasNext = hasNext;
269 public boolean hasNext() {
275 * If both this and {@link #hasNext()} are true, infoOnly takes precedence. (default is false)
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
ver4_patricia_trie_policy.cpp 184 while (bigramsIt.hasNext()) {
211 while (bigramsIt.hasNext()) {
570 bool hasNext = true;
572 while (hasNext) {
575 hasNext = bigramEntry.hasNext();
606 bool hasNext = true;
607 while (hasNext) {
611 &shortcutTargetLength, &shortcutProbability, &hasNext, &shortcutPos);
  /cts/libs/json/src/com/android/json/stream/
JsonReader.java 42 * while loop that accumulates values, terminating when {@link #hasNext}
48 * This loop should terminate when {@link #hasNext} is false. Finally,
95 * while (reader.hasNext()) {
109 * while (reader.hasNext()) {
131 * while (reader.hasNext()) {
143 * while (reader.hasNext()) {
297 public boolean hasNext() throws IOException {
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaDrmMockTest.java 468 assertTrue(iter.hasNext());
470 assertTrue(iter.hasNext());
472 assertFalse(iter.hasNext());
    [all...]
  /external/clang/include/clang/Sema/
Lookup.h 622 bool hasNext() const {
  /external/guava/guava/src/com/google/common/collect/
LinkedHashMultimap.java 369 public boolean hasNext() {
376 if (!hasNext()) {
499 public boolean hasNext() {
505 if (!hasNext()) {
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedHashMultimap.java 365 public boolean hasNext() {
372 if (!hasNext()) {
495 public boolean hasNext() {
501 if (!hasNext()) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractIteratorTester.java 220 public boolean hasNext() {
330 if (!elementsToInsertIterable.iterator().hasNext()) {
592 Stimulus<E, Iterator<E>> hasNext = new Stimulus<E, Iterator<E>>("hasNext") {
596 assertEquals(reference.hasNext(), target.hasNext());
615 return Arrays.asList(hasNext, next, remove);
  /external/guava/guava-tests/test/com/google/common/collect/
FilteredCollectionsTest.java 82 assertTrue(filteredItr.hasNext());
86 assertFalse(filteredItr.hasNext());
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
XCldrStub.java 158 public boolean hasNext() {
159 return it1.hasNext() || it2 != null && it2.hasNext();
163 if (it2 != null && it2.hasNext()) {
  /external/icu/android_icu4j/src/main/java/android/icu/util/
BytesTrie.java 172 public boolean hasNext() { return (ordinal()&1)!=0; }
243 * if(!result.hasNext()) return Result.NO_MATCH;
536 public boolean hasNext() /*const*/ { return pos_>=0 || !stack_.isEmpty(); }
    [all...]
CharsTrie.java 159 (first(UTF16.getLeadSurrogate(cp)).hasNext() ?
200 (next(UTF16.getLeadSurrogate(cp)).hasNext() ?
211 * if(!result.hasNext()) return Result.NO_MATCH;
461 public boolean hasNext() /*const*/ { return pos_>=0 || !stack_.isEmpty(); }
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieMap.java 132 if (!result.hasNext()) {
181 public boolean hasNext() {
182 return iterator.hasNext();
249 return result.hasNext();
367 public boolean hasNext() {
368 return iterator.hasNext();
427 return result.hasNext();
589 while (iterator.hasNext()) {
605 while (iterator.hasNext()) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
CollectionUtilities.java 64 for (Iterator it = collection.iterator(); it.hasNext();) {
100 while (source.hasNext()) {
113 while (source.hasNext()) {
139 for (Iterator it = itemsToRemove.iterator(); it.hasNext();) {
155 if (!it.hasNext()) return null;
170 if (!it.hasNext()) return null;
173 while (it.hasNext()) {
181 while (it.hasNext()) {
233 for (Iterator<T> it = c.iterator(); it.hasNext();) {
249 for (Iterator<T> it = c.iterator(); it.hasNext();) {
    [all...]
  /external/icu/icu4c/source/test/intltest/
citrtest.cpp 68 virtual UBool hasNext() { return TRUE;};
485 } while (iter.hasNext());
603 else if(iter.hasNext() == FALSE && i != text.length())
604 errln("Iterator reached end prematurely. Failed at hasNext");
617 if(iter.hasNext() == TRUE)
618 errln("hasNext() returned true at the end of the string");
623 if(iter.getIndex() != text.length() || iter.hasNext() != FALSE)
692 } while (iter.hasNext());
716 else if(iter.hasNext() == FALSE)
778 h=iter->hasNext(iter)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
XCldrStub.java 156 public boolean hasNext() {
157 return it1.hasNext() || it2 != null && it2.hasNext();
161 if (it2 != null && it2.hasNext()) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
BytesTrie.java 186 public boolean hasNext() { return (ordinal()&1)!=0; }
260 * if(!result.hasNext()) return Result.NO_MATCH;
569 public boolean hasNext() /*const*/ { return pos_>=0 || !stack_.isEmpty(); }
    [all...]
CharsTrie.java 168 (first(UTF16.getLeadSurrogate(cp)).hasNext() ?
211 (next(UTF16.getLeadSurrogate(cp)).hasNext() ?
222 * if(!result.hasNext()) return Result.NO_MATCH;
485 public boolean hasNext() /*const*/ { return pos_>=0 || !stack_.isEmpty(); }
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieMap.java 131 if (!result.hasNext()) {
180 public boolean hasNext() {
181 return iterator.hasNext();
248 return result.hasNext();
366 public boolean hasNext() {
367 return iterator.hasNext();
426 return result.hasNext();
588 while (iterator.hasNext()) {
604 while (iterator.hasNext()) {
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
CollectionUtilities.java 61 for (Iterator it = collection.iterator(); it.hasNext();) {
97 while (source.hasNext()) {
110 while (source.hasNext()) {
136 for (Iterator it = itemsToRemove.iterator(); it.hasNext();) {
152 if (!it.hasNext()) return null;
167 if (!it.hasNext()) return null;
170 while (it.hasNext()) {
178 while (it.hasNext()) {
230 for (Iterator<T> it = c.iterator(); it.hasNext();) {
246 for (Iterator<T> it = c.iterator(); it.hasNext();) {
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 621 public boolean hasNext() {
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
PhoneNumberMatcher.java 693 public boolean hasNext() {
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssTokens.java 100 public boolean hasNext() {
111 if (!hasNext()) { throw new NoSuchElementException(); }
    [all...]

Completed in 567 milliseconds

<<11121314151617181920>>