HomeSort by relevance Sort by last modified time
    Searched refs:hasNext (Results 1 - 25 of 1463) 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/dexmaker/src/dx/java/com/android/dx/util/
IntIterator.java 29 boolean hasNext();
  /external/owasp/sanitizer/src/main/org/owasp/html/
TokenStream.java 33 boolean hasNext();
  /libcore/luni/src/main/java/java/util/
Iterator.java 24 * methods {@code next} and {@code hasNext()} may throw a {@code ConcurrentModificationException}.
40 public boolean hasNext();
48 * @see #hasNext
AbstractCollection.java 75 while (it.hasNext()) {
101 while (it.hasNext()) {
129 while (it.hasNext()) {
135 while (it.hasNext()) {
166 while (it.hasNext()) {
227 while (it.hasNext()) {
234 while (it.hasNext()) {
276 while (it.hasNext()) {
317 while (it.hasNext()) {
371 while (it.hasNext()) {
    [all...]
AbstractSet.java 78 while (it.hasNext()) {
101 while (it.hasNext()) {
109 while (it.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 50 boolean hasNext();
54 * This method should only be called while {@link #hasNext hasNext}
HeaderIterator.java 51 boolean hasNext()
57 * This method should only be called while {@link #hasNext hasNext}
TokenIterator.java 54 boolean hasNext()
60 * This method should only be called while {@link #hasNext hasNext}
  /cts/tests/tests/text/src/android/text/cts/
TextUtils_SimpleStringSplitterTest.java 38 assertFalse(simpleStringSplitter.hasNext());
41 assertTrue(simpleStringSplitter.hasNext());
44 assertTrue(simpleStringSplitter.hasNext());
47 assertFalse(simpleStringSplitter.hasNext());
50 assertFalse(simpleStringSplitter.hasNext());
58 assertFalse(iterator.hasNext());
63 assertTrue(iterator.hasNext());
65 assertTrue(iterator.hasNext());
67 assertFalse(iterator.hasNext());
112 assertFalse(simpleStringSplitter.hasNext());
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/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...]
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/content/
bigram_entry.h 33 BigramEntry(const bool hasNext, const int probability, const int targetTerminalId)
34 : mHasNext(hasNext), mProbability(probability), mHistoricalInfo(),
38 BigramEntry(const bool hasNext, const int probability,
40 : mHasNext(hasNext), mProbability(probability), mHistoricalInfo(*historicalInfo),
47 const BigramEntry updateHasNextAndGetEntry(const bool hasNext) const {
48 return BigramEntry(hasNext, mProbability, &mHistoricalInfo, mTargetTerminalId);
68 bool hasNext() const {
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-tests/test/com/google/common/base/
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());
94 iter.hasNext();
104 iter.hasNext();
120 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 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...]
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();
SingletonImmutableList.java 66 boolean hasNext = start == 0;
68 @Override public boolean hasNext() {
69 return hasNext;
73 return !hasNext;
77 if (!hasNext) {
80 hasNext = false;
85 return hasNext ? 0 : 1;
89 if (hasNext) {
92 hasNext = true;
97 return hasNext ? -1 : 0
    [all...]
AbstractIterator.java 32 * #hasNext} method. But many data sources, such as {@link
45 * while (in.hasNext()) {
91 * <p>The initial invocation of {@link #hasNext()} or {@link #next()} calls
92 * this method, as does the first invocation of {@code hasNext} or {@code
98 * {@code hasNext} or {@code next} invocation that invoked this method. Any
102 * <p>The implementation of this method may not invoke the {@code hasNext},
109 * will propagate outward to the {@code hasNext()}, {@code next()}, or
129 public final boolean hasNext() {
153 if (!hasNext()) {
168 if (!hasNext()) {
    [all...]
  /external/hamcrest/src/org/hamcrest/internal/
SelfDescribingValueIterator.java 14 public boolean hasNext() {
15 return values.hasNext();

Completed in 1700 milliseconds

1 2 3 4 5 6 7 8 91011>>