HomeSort by relevance Sort by last modified time
    Searched refs:hasNext (Results 1 - 25 of 2531) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dexgen/src/com/android/dexgen/util/
IntIterator.java 29 boolean hasNext();
  /dalvik/dx/src/com/android/dx/util/
IntIterator.java 29 boolean hasNext();
  /external/owasp/sanitizer/src/main/org/owasp/html/
TokenStream.java 33 boolean hasNext();
  /external/apache-harmony/support/src/test/java/tests/support/
Support_MapTest2.java 43 .hasNext());
45 .hasNext());
47 .hasNext());
57 .hasNext());
59 .hasNext());
61 .hasNext());
  /libcore/support/src/test/java/tests/support/
Support_MapTest2.java 43 .hasNext());
45 .hasNext());
47 .hasNext());
57 .hasNext());
59 .hasNext());
61 .hasNext());
  /external/apache-http/src/org/apache/http/
HeaderElementIterator.java 55 boolean hasNext();
59 * This method should only be called while {@link #hasNext hasNext}
HeaderIterator.java 56 boolean hasNext()
62 * This method should only be called while {@link #hasNext hasNext}
TokenIterator.java 59 boolean hasNext()
65 * This method should only be called while {@link #hasNext hasNext}
  /libcore/ojluni/src/main/java/java/util/
Iterator.java 62 boolean hasNext();
105 * while (hasNext())
115 while (hasNext())
AbstractCollection.java 35 * method must implement <tt>hasNext</tt> and <tt>next</tt>.)<p>
101 while (it.hasNext())
105 while (it.hasNext())
139 if (! it.hasNext()) // fewer elements than expected
143 return it.hasNext() ? finishToArray(r, it) : r;
183 if (! it.hasNext()) { // fewer elements than expected
199 return it.hasNext() ? finishToArray(r, it) : r;
223 while (it.hasNext()) {
284 while (it.hasNext()) {
291 while (it.hasNext()) {
    [all...]
AbstractSet.java 123 while (i.hasNext()) {
173 for (Iterator<?> i = c.iterator(); i.hasNext(); )
176 for (Iterator<?> i = iterator(); i.hasNext(); ) {
  /cts/tests/tests/text/src/android/text/cts/
TextUtils_SimpleStringSplitterTest.java 52 assertFalse(simpleStringSplitter.hasNext());
55 assertTrue(simpleStringSplitter.hasNext());
58 assertTrue(simpleStringSplitter.hasNext());
61 assertFalse(simpleStringSplitter.hasNext());
64 assertFalse(simpleStringSplitter.hasNext());
73 assertFalse(iterator.hasNext());
78 assertTrue(iterator.hasNext());
80 assertTrue(iterator.hasNext());
82 assertFalse(iterator.hasNext());
131 assertFalse(simpleStringSplitter.hasNext());
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/content/
bigram_entry.h 42 BigramEntry(const bool hasNext, const int probability, const int targetTerminalId)
43 : mHasNext(hasNext), mProbability(probability), mHistoricalInfo(),
47 BigramEntry(const bool hasNext, const int probability,
49 : mHasNext(hasNext), mProbability(probability), mHistoricalInfo(*historicalInfo),
56 const BigramEntry updateHasNextAndGetEntry(const bool hasNext) const {
57 return BigramEntry(hasNext, mProbability, &mHistoricalInfo, mTargetTerminalId);
77 bool hasNext() const {
shortcut_dict_content.cpp 116 bool hasNext = true;
120 while (hasNext) {
124 codePoints, &codePointCount, &probability, &hasNext, &readingPos);
126 hasNext, &writingPos)) {
138 const bool hasNext = shortcutFlags & Ver4DictConstants::SHORTCUT_HAS_NEXT_MASK;
139 const int shortcutFlagsToWrite = createAndGetShortcutFlags(probability, hasNext);
145 const int codePointCount, const int probability, const bool hasNext,
148 const int shortcutFlags = createAndGetShortcutFlags(probability, hasNext);
165 bool hasNext = true;
168 while (hasNext) {
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
AbstractIteratorTest.java 56 assertTrue(iter.hasNext());
59 // verify idempotence of hasNext()
60 assertTrue(iter.hasNext());
61 assertTrue(iter.hasNext());
62 assertTrue(iter.hasNext());
65 assertFalse(iter.hasNext());
68 assertFalse(iter.hasNext());
93 iter.hasNext();
103 iter.hasNext();
119 iter.hasNext();
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
AbstractIteratorTest.java 59 assertTrue(iter.hasNext());
62 // verify idempotence of hasNext()
63 assertTrue(iter.hasNext());
64 assertTrue(iter.hasNext());
65 assertTrue(iter.hasNext());
68 assertFalse(iter.hasNext());
71 assertFalse(iter.hasNext());
96 iter.hasNext();
106 iter.hasNext();
122 iter.hasNext();
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
UnmodifiableIteratorTest.java 40 public boolean hasNext() {
45 if (!hasNext()) {
52 assertTrue(iterator.hasNext());
AbstractIteratorTest.java 60 assertTrue(iter.hasNext());
63 // verify idempotence of hasNext()
64 assertTrue(iter.hasNext());
65 assertTrue(iter.hasNext());
66 assertTrue(iter.hasNext());
69 assertFalse(iter.hasNext());
72 assertFalse(iter.hasNext());
105 assertTrue(iter.hasNext());
190 iter.hasNext();
200 iter.hasNext();
    [all...]
UnmodifiableListIteratorTest.java 37 assertTrue(iterator.hasNext());
48 assertTrue(iterator.hasNext());
61 assertTrue(iterator.hasNext());
77 public boolean hasNext() {
82 if (!hasNext()) {
  /external/guava/guava/src/com/google/common/collect/
ForwardingIterator.java 42 public boolean hasNext() {
43 return delegate().hasNext();
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
SelfDescribingValueIterator.java 15 public boolean hasNext() {
16 return values.hasNext();
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/
FixedTableModelTest.java 51 assertTrue(it.hasNext());
54 assertTrue(it.hasNext());
57 assertTrue(it.hasNext());
60 assertTrue(it.hasNext());
63 assertTrue(it.hasNext());
66 assertFalse(it.hasNext());
83 assertTrue(it.hasNext());
90 assertTrue(it.hasNext());
97 assertTrue(it.hasNext());
104 assertTrue(it.hasNext());
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
AbstractIteratorTest.java 57 assertTrue(iter.hasNext());
60 // verify idempotence of hasNext()
61 assertTrue(iter.hasNext());
62 assertTrue(iter.hasNext());
63 assertTrue(iter.hasNext());
66 assertFalse(iter.hasNext());
69 assertFalse(iter.hasNext());
102 assertTrue(iter.hasNext());
176 iter.hasNext();
186 iter.hasNext();
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
shortcut_dict_content.cpp 101 bool hasNext = true;
105 while (hasNext) {
109 codePoints, &codePointCount, &probability, &hasNext, &readingPos);
111 hasNext, &writingPos)) {
123 const bool hasNext = shortcutFlags & Ver4DictConstants::SHORTCUT_HAS_NEXT_MASK;
124 const int shortcutFlagsToWrite = createAndGetShortcutFlags(probability, hasNext);
130 const int codePointCount, const int probability, const bool hasNext,
133 const int shortcutFlags = createAndGetShortcutFlags(probability, hasNext);
150 bool hasNext = true;
153 while (hasNext) {
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterators.java 73 public boolean hasNext() {
127 @Override public boolean hasNext() {
161 public boolean hasNext() {
162 return iterator.hasNext();
184 * will be left exhausted: its {@code hasNext()} method will return
189 while (iterator.hasNext()) {
206 * {@code hasNext()} method will return {@code false}.
219 * iterator. The iterator will be left exhausted: its {@code hasNext()}
232 while (removeFrom.hasNext()) {
244 * {@code hasNext()} method will return {@code false}
    [all...]

Completed in 485 milliseconds

1 2 3 4 5 6 7 8 91011>>