HomeSort by relevance Sort by last modified time
    Searched refs:hasNext (Results 101 - 125 of 711) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/guava/src/com/google/common/base/
Joiner.java 87 if (iterator.hasNext()) {
89 while (iterator.hasNext()) {
209 while (iterator.hasNext()) {
216 while (iterator.hasNext()) {
267 if (iterator.hasNext()) {
272 while (iterator.hasNext()) {
  /external/guava/src/com/google/common/collect/
AbstractMultiset.java 90 public boolean hasNext() {
91 return laterCount > 0 || entryIterator.hasNext();
95 if (!hasNext()) {
190 while (entries.hasNext()) {
228 public boolean hasNext() {
229 return entryIterator.hasNext();
Ordering.java 420 if (it.hasNext()) {
422 while (it.hasNext()) {
441 if (it.hasNext()) {
443 while (it.hasNext()) {
469 while (iterator.hasNext()) {
529 while (iterator.hasNext()) {
LinkedListMultimap.java 259 for (Iterator<V> i = new ValueForKeyIterator(key); i.hasNext();) {
277 public boolean hasNext() {
299 public boolean hasNext() {
360 public boolean hasNext() {
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...]
AbstractMapBasedMultiset.java 103 public boolean hasNext() {
104 return backingEntries.hasNext();
197 public boolean hasNext() {
198 return occurrencesLeft > 0 || entryIterator.hasNext();
359 public boolean hasNext() {
360 return entries.hasNext();
395 while (i.hasNext()) {
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
PhoneNumberMatcherTest.java 212 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null;
223 PhoneNumberMatch matchWithSpaces = iterator.hasNext() ? iterator.next() : null;
471 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null;
493 PhoneNumberMatch match = iterator.hasNext() ? iterator.next() : null;
640 assertFalse(iterable.iterator().hasNext());
670 assertFalse(iterator.hasNext());
671 assertFalse(iterator.hasNext());
676 assertFalse(iterator.hasNext());
682 // With hasNext() -> next().
684 // Double hasNext() to ensure it does not advance
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 97 while (it.hasNext())
121 while (it.hasNext())
136 for (Iterator it = dns.iterator(); it.hasNext();)
150 while (_iter.hasNext())
185 while (it.hasNext())
211 for (Iterator it = emails.iterator(); it.hasNext();)
226 while (it2.hasNext())
253 while (it.hasNext())
277 for (Iterator it = ips.iterator(); it.hasNext();)
291 while (it2.hasNext())
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
WeakHashMapTest.java 180 while (it.hasNext()) {
207 while (it.hasNext()) {
211 if (it.hasNext()) {
221 while (it.hasNext()) {
228 while (it.hasNext()) {
234 .hasNext());
251 while (it.hasNext()) {
355 while (it.hasNext()) {
384 assertFalse("Wrong hasNext() value", iter.hasNext());
    [all...]
LinkedHashMapTest.java 217 while (i.hasNext()) {
247 it.hasNext();
270 it2.hasNext();
464 for (i = 0; it1.hasNext(); i++) {
480 for (i = 0; i < sz && it3.hasNext(); i++) {
498 for (i = 1; i < sz && it2.hasNext(); i += 2) {
503 for (i = 0; i < sz && it2.hasNext(); i += 2) {
508 assertTrue("Entries left to iterate on", !it2.hasNext());
526 for (i = 0; it1.hasNext(); i++) {
540 for (i = 0; i < sz && it3.hasNext(); i++)
    [all...]
HashtableTest.java 204 assertFalse(iterator.hasNext());
256 while (i.hasNext())
319 for (expectedHash = 0; iterator.hasNext(); expectedHash += iterator
381 assertFalse(iterator.hasNext());
452 it2.hasNext();
521 while (it.hasNext()) {
698 while(iterator.hasNext())
722 assertTrue(iterator.hasNext());
736 assertFalse(iterator.hasNext());
739 assertTrue(iterator.hasNext());
    [all...]
  /external/jdiff/src/jdiff/
XMLToAPI.java 100 while (iter.hasNext()) {
103 while (iter2.hasNext()) {
113 while (iter3.hasNext()) {
120 } //while (iter2.hasNext())
121 } //while (iter.hasNext())
140 while (iter.hasNext()) {
145 while (iter2.hasNext()) {
162 while (iter.hasNext()) {
183 while (iter3.hasNext()) {
HTMLIndexes.java 140 while (iter.hasNext()) {
257 while ((indexType == 3 || indexType == 0) && iter.hasNext()) {
262 while ((indexType == 3 || indexType == 1) && iter.hasNext()) {
267 while ((indexType == 3 || indexType == 2) && iter.hasNext()) {
284 while (iter.hasNext()) {
323 while (iter.hasNext()) {
380 while (iter.hasNext()) {
451 while (iter.hasNext()) {
462 while ((indexType == 3 || indexType == 0) && iterClass.hasNext()) {
467 while ((indexType == 3 || indexType == 1) && iterClass.hasNext()) {
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
SIPHeaderList.java 169 while (li.hasNext()) {
196 while (li.hasNext()) {
334 for (Iterator<HDR> it = hlist.iterator(); it.hasNext();) {
426 for (Iterator<SIPHeader> it = that.hlist.iterator(); it.hasNext();) {
430 for (Iterator<HDR> it1 = this.hlist.iterator(); it1.hasNext()
464 for (Iterator<HDR> it = (Iterator<HDR>) hlistToClone.iterator(); it.hasNext();) {
506 if (iterator.hasNext()) {
  /libcore/luni/src/main/java/java/util/
AbstractList.java 48 public boolean hasNext() {
191 public boolean hasNext() {
450 while (it.hasNext()) {
492 while (it1.hasNext()) {
526 while (it.hasNext()) {
545 while (it.hasNext()) {
551 while (it.hasNext()) {
  /libcore/luni/src/main/java/java/text/
AttributedString.java 164 while (it.hasNext()) {
193 while (it.hasNext()) {
208 while (it.hasNext()) {
236 while (it.hasNext()) {
287 while (it.hasNext()) {
304 while (it.hasNext()) {
335 while (it.hasNext()) {
407 while (it.hasNext()) {
444 while (it.hasNext()) {
554 while (it.hasNext()) {
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 117 for (int counter = 0; li.hasNext(); counter++) {
143 assertTrue("list iterator hasNext(): " + i, !li.hasNext());
145 assertTrue("list iterator hasNext(): " + i, li.hasNext());
177 assertTrue("list iterator hasNext()2: " + i, li.hasNext());
215 assertTrue("list iterator hasNext()3", li.hasNext());
  /external/javassist/src/main/javassist/bytecode/
AttributeInfo.java 204 while (iterator.hasNext()) {
218 while (iterator.hasNext()) {
263 while (iterator.hasNext()) {
271 while (iterator.hasNext()) {
281 while (iterator.hasNext()) {
  /libcore/luni/src/test/java/tests/api/java/util/
LinkedHashMapTest.java 224 while (i.hasNext()) {
268 it.hasNext();
291 it2.hasNext();
527 for (i = 0; it1.hasNext(); i++) {
543 for (i = 0; i < sz && it3.hasNext(); i++) {
561 for (i = 1; i < sz && it2.hasNext(); i += 2) {
566 for (i = 0; i < sz && it2.hasNext(); i += 2) {
571 assertTrue("Entries left to iterate on", !it2.hasNext());
589 for (i = 0; it1.hasNext(); i++) {
603 for (i = 0; i < sz && it3.hasNext(); i++)
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 117 for (int counter = 0; li.hasNext(); counter++) {
143 assertTrue("list iterator hasNext(): " + i, !li.hasNext());
145 assertTrue("list iterator hasNext(): " + i, li.hasNext());
177 assertTrue("list iterator hasNext()2: " + i, li.hasNext());
215 assertTrue("list iterator hasNext()3", li.hasNext());
  /development/tools/apkcheck/src/com/android/apkcheck/
ClassInfo.java 188 while (iter.hasNext()) {
302 while (keyIter.hasNext()) {
312 while (keyIter.hasNext()) {
  /external/apache-harmony/nio_char/src/test/java/org/apache/harmony/nio_char/tests/java/nio/charset/
CharsetTest.java 47 for (Iterator nameItr = names.iterator(); nameItr.hasNext();) {
61 for (Iterator nameItr = knownRegisteredCharsets.iterator(); nameItr.hasNext();) {
66 for (Iterator nameItr = unknownRegisteredCharsets.iterator(); nameItr.hasNext();) {
  /external/javassist/src/main/javassist/util/
HotSwapper.java 123 while (iter.hasNext()) {
175 while (it.hasNext()) {
220 while (iter.hasNext()) {
  /external/nist-sip/java/gov/nist/core/
MultiValueMapImpl.java 62 while (pairsIterator.hasNext()) {
74 while (pairsIterator.hasNext()) {
87 while (pairsIterator.hasNext()) {
  /external/nist-sip/java/gov/nist/javax/sip/header/ims/
PChargingFunctionAddresses.java 169 while (li.hasNext()) {
255 while (li.hasNext()) {
283 while (li.hasNext()) {
  /libcore/luni/src/main/java/java/net/
CookieStoreImpl.java 71 for (Iterator<HttpCookie> i = cookiesForUri.iterator(); i.hasNext(); ) {
88 for (Iterator<HttpCookie> i = entryCookies.iterator(); i.hasNext(); ) {
107 for (Iterator<HttpCookie> i = list.iterator(); i.hasNext(); ) {

Completed in 784 milliseconds

1 2 3 45 6 7 8 91011>>