HomeSort by relevance Sort by last modified time
    Searched refs:DONE (Results 76 - 100 of 631) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/text/method/
WordIteratorTest.java 60 assertEquals(BreakIterator.DONE, mWordIterator.getBeginning(i));
61 assertEquals(BreakIterator.DONE, mWordIterator.getEnd(i));
68 assertEquals(BreakIterator.DONE, mWordIterator.following(0));
69 assertEquals(BreakIterator.DONE, mWordIterator.preceding(0));
71 assertEquals(BreakIterator.DONE, mWordIterator.getBeginning(0));
72 assertEquals(BreakIterator.DONE, mWordIterator.getEnd(0));
183 assertEquals(BreakIterator.DONE, wordIterator.preceding(expectedWindowStart));
188 assertEquals(BreakIterator.DONE, wordIterator.following(expectedWindowEnd));
208 assertEquals(BreakIterator.DONE, wordIterator.preceding(text.indexOf('a')));
221 assertEquals(BreakIterator.DONE, wordIterator.preceding(text.indexOf('a')))
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tnc.c 18 START, CONTINUE, RECOMMENDATION, FRAG_ACK, WAIT_FRAG_ACK, DONE,
54 case DONE:
55 return "DONE";
179 eap_tnc_set_state(data, DONE);
189 eap_tnc_set_state(data, DONE);
263 eap_tnc_set_state(data, DONE);
271 else if (data->state == DONE)
314 case DONE:
462 if (len == 1 && (data->state == DONE || data->state == FAIL)) {
543 return data->state == DONE || data->state == FAIL
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBIAPITest.java 162 for (int pos = lineIter.first(); pos != BreakIterator.DONE; pos = lineIter.next()) {
202 if (p != BreakIterator.DONE || q != BreakIterator.DONE)
228 if (p != BreakIterator.DONE || q != BreakIterator.DONE)
260 if (p != BreakIterator.DONE || q != BreakIterator.DONE)
298 if (p != BreakIterator.DONE || q != BreakIterator.DONE)
331 if (p != BreakIterator.DONE)
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBIAPITest.java 159 for (int pos = lineIter.first(); pos != BreakIterator.DONE; pos = lineIter.next()) {
199 if (p != BreakIterator.DONE || q != BreakIterator.DONE)
225 if (p != BreakIterator.DONE || q != BreakIterator.DONE)
257 if (p != BreakIterator.DONE || q != BreakIterator.DONE)
295 if (p != BreakIterator.DONE || q != BreakIterator.DONE)
328 if (p != BreakIterator.DONE)
    [all...]
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CaptureSequencer.cpp 183 "DONE",
332 CaptureState nextState = DONE;
338 return DONE;
365 return DONE;
398 return DONE;
512 return DONE;
545 return DONE;
553 return DONE;
573 return DONE;
583 return DONE;
    [all...]
  /external/autotest/client/tests/tsc/src/
checktsc.c 167 #define DONE 2
217 set_state(&master, DONE);
218 wait_for_state(&slave, DONE);
264 wait_for_state(&master, DONE);
268 set_state(&slave, DONE);
  /external/freetype/src/gzip/
inflate.c 9 #define DONE INFLATE_DONE
25 DONE, /* finished check, done */
233 z->state->mode = DONE;
261 z->state->mode = DONE;
262 case DONE:
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
BreakIteratorTest.java 42 assertEquals(-1, BreakIterator.DONE);
97 assertEquals(BreakIterator.DONE, iterator.following(TEXT.length()));
128 assertEquals(BreakIterator.DONE, iterator.next(3));
154 assertEquals(BreakIterator.DONE, iterator.preceding(0));
277 assertEquals(BreakIterator.DONE, iterator.next());
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
RuleCharacterIterator.java 33 // 2. Rather than return DONE, throw an exception if the end
71 public static final int DONE = -1;
124 * Returns the next character using the given options, or DONE if there
129 * @return the current 32-bit code point, or DONE
132 int c = DONE;
328 return (i < text.length()) ? UTF16.charAt(text, i) : DONE;
SimpleFilteredSentenceBreakIterator.java 88 while ((uch = text.previousCodePoint()) != UCharacterIterator.DONE && // more to consume backwards and..
112 while ((uch = text.nextCodePoint()) != BreakIterator.DONE
128 * @return new break position or BreakIterator.DONE
131 if (n == BreakIterator.DONE || // at end or
139 while (n != BreakIterator.DONE && n != textLen) {
151 return n; //hit underlying DONE or break at end of text
158 * @return new break position or BreakIterator.DONE
161 if (n == 0 || n == BreakIterator.DONE || // at end or
167 while (n != BreakIterator.DONE && n != 0) {
179 return n; //hit underlying DONE or break at end of tex
    [all...]
CharacterIteration.java 72 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) {
123 if (lead == CharacterIterator.DONE) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
RuleCharacterIterator.java 32 // 2. Rather than return DONE, throw an exception if the end
70 public static final int DONE = -1;
123 * Returns the next character using the given options, or DONE if there
128 * @return the current 32-bit code point, or DONE
131 int c = DONE;
327 return (i < text.length()) ? UTF16.charAt(text, i) : DONE;
SimpleFilteredSentenceBreakIterator.java 86 while ((uch = text.previousCodePoint()) != UCharacterIterator.DONE && // more to consume backwards and..
110 while ((uch = text.nextCodePoint()) != BreakIterator.DONE
126 * @return new break position or BreakIterator.DONE
129 if (n == BreakIterator.DONE || // at end or
137 while (n != BreakIterator.DONE && n != textLen) {
149 return n; //hit underlying DONE or break at end of text
156 * @return new break position or BreakIterator.DONE
159 if (n == 0 || n == BreakIterator.DONE || // at end or
165 while (n != BreakIterator.DONE && n != 0) {
177 return n; //hit underlying DONE or break at end of tex
    [all...]
CharacterIteration.java 68 if (lead == CharacterIterator.DONE && ci.getIndex() >= ci.getEndIndex()) {
119 if (lead == CharacterIterator.DONE) {
  /external/brotli/java/org/brotli/wrapper/dec/
Decoder.java 66 case DONE:
128 while (decoder.getStatus() != DecoderJNI.Status.DONE) {
  /external/icu/icu4c/source/samples/break/
break.cpp 54 end != BreakIterator::DONE;
66 start != BreakIterator::DONE;
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperf.h 96 while(m_brkIt_->next() != BreakIterator::DONE) {
104 while(m_brkIt_->next() != BreakIterator::DONE) {
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/test/QA/
runiSACfault.txt 29 done
37 echo DONE!
  /prebuilts/sdk/tools/
jack-admin 151 DONE=1
153 while [ "$DONE" -ne 0 ]; do
184 done
188 DONE=1
190 while [ "$DONE" -ne 0 ]; do
211 DONE=0;
213 done
458 done
460 DONE=$?
461 while [ $DONE -eq 0 ]; d
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inflate.h 49 DONE, /* finished check, done -- remain here until reset */
77 CHECK -> LENGTH -> DONE
  /external/clang/test/Sema/
type-spec-struct-union.c 56 SQUAT, FLAG, DICT4, DICT3, DICT2, DICT1, DICT0, HOP, CHECK4, CHECK3, CHECK2, CHECK1, DONE, BAD
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BreakTransliterator.java 94 for(boundary = bi.first(); boundary != BreakIterator.DONE && boundary < pos.limit; boundary = bi.next()) {
282 return DONE;
299 return DONE;
315 return DONE;
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
BreakTransliterator.java 93 for(boundary = bi.first(); boundary != BreakIterator.DONE && boundary < pos.limit; boundary = bi.next()) {
281 return DONE;
298 return DONE;
314 return DONE;
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
BreakIteratorPerformanceTest.java 102 for (int end = iter.next(); end != com.ibm.icu.text.BreakIterator.DONE; start = end, end = iter.next())
116 for (int end = iter.next(); end != com.ibm.icu.text.BreakIterator.DONE; start = end, end = iter.next())
129 for (int end = iIter.next(); end != com.ibm.icu.text.BreakIterator.DONE; start = end, end = iIter
150 for (int end = jIter.next(); end != java.text.BreakIterator.DONE; start = end, end = jIter.next())
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/ime/indic/
IndicInputMethodImpl.java 325 return DONE;
331 return DONE;
338 return DONE;
434 return DONE;

Completed in 868 milliseconds

1 2 34 5 6 7 8 91011>>