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

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/java/android/text/
Selection.java 444 public static final int DONE = BreakIterator.DONE;
454 if (offset != PositionIterator.DONE) {
468 if (offset != PositionIterator.DONE) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
AttributedStringTest.java 39 while ((ch = it.next()) != CharacterIterator.DONE)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
StringSearch.java 198 search_.matchedIndex_ = DONE;
205 // This is done by super class constructor
393 return DONE;
458 search_.matchedIndex_ = DONE;
472 search_.matchedIndex_ = search_.matchedIndex_ == DONE ?
477 search_.matchedIndex_ = DONE;
495 // usearch_handleNextXXX will already have done it.
503 if (search_.matchedIndex_ == DONE) {
512 return DONE;
522 search_.matchedIndex_ == DONE ? getIndex() : search_.matchedIndex_
    [all...]
BreakIterator.java 71 * <li>DONE is used as a flag to indicate when iteration has stopped. DONE is only
127 * end != BreakIterator.DONE;
141 * start != BreakIterator.DONE;
191 * if (wordLimit == BreakIterator.DONE) {
192 * return BreakIterator.DONE;
248 * DONE is returned by previous() and next() after all valid
251 public static final int DONE = -1;
277 * to move off either end of the text, this function returns DONE;
284 * iteration position, or DONE if moving n boundaries causes the iterato
    [all...]
ScientificNumberFormatter.java 157 iterator.current() != CharacterIterator.DONE;
206 iterator.current() != CharacterIterator.DONE;
279 // If c2 is DONE, it will fail the low surrogate test and we
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
StringSearch.java 199 search_.matchedIndex_ = DONE;
206 // This is done by super class constructor
406 return DONE;
473 search_.matchedIndex_ = DONE;
488 search_.matchedIndex_ = search_.matchedIndex_ == DONE ?
493 search_.matchedIndex_ = DONE;
511 // usearch_handleNextXXX will already have done it.
519 if (search_.matchedIndex_ == DONE) {
528 return DONE;
539 search_.matchedIndex_ == DONE ? getIndex() : search_.matchedIndex_
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
BreakIterator.java 70 * <li>DONE is used as a flag to indicate when iteration has stopped. DONE is only
126 * end != BreakIterator.DONE;
140 * start != BreakIterator.DONE;
190 * if (wordLimit == BreakIterator.DONE) {
191 * return BreakIterator.DONE;
250 * DONE is returned by previous() and next() after all valid
254 public static final int DONE = -1;
282 * to move off either end of the text, this function returns DONE;
289 * iteration position, or DONE if moving n boundaries causes the iterato
    [all...]
ScientificNumberFormatter.java 168 iterator.current() != CharacterIterator.DONE;
217 iterator.current() != CharacterIterator.DONE;
290 // If c2 is DONE, it will fail the low surrogate test and we
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlLexer.java 261 * tokens. The matching of attribute names and values is done in a later step.
347 DONE,
531 state = State.DONE;
573 state = State.DONE;
584 state = State.DONE;
590 state = State.DONE;
601 state = State.DONE;
611 state = State.DONE;
624 state = State.DONE;
642 state = State.DONE;
    [all...]
  /frameworks/rs/
update_rs_prebuilts.sh 133 done
149 done
151 echo DONE BUILDING RS PREBUILTS
197 done
202 done
208 done
210 done
241 done
246 done
251 done
    [all...]
  /external/icu/icu4c/source/test/intltest/
rbbiapts.cpp 310 TEST_ASSERT(rb->following(11) == BreakIterator::DONE);
314 //if(rb->following(11) != BreakIterator::DONE) {
450 if (i != BreakIterator::DONE) {
451 errln("%s:%d Incorrect value from bi->previous(). Expected DONE, got %d", __FILE__, __LINE__, i);
465 if (i != BreakIterator::DONE) {
466 errln("%s:%d Incorrect value from bi->next(). Expected DONE, got %d", __FILE__, __LINE__, i);
514 if (i != BreakIterator::DONE) {
515 errln("%s:%d Incorrect value from bi->following(). Expected DONE, got %d", __FILE__, __LINE__, i);
538 if (i != BreakIterator::DONE) {
539 errln("%s:%d Incorrect value from bi->preceding(). Expected DONE, got %d", __FILE__, __LINE__, i)
    [all...]
rbbitst.cpp 181 // If we've run through both the expected and actual results vectors, we're done.
385 for (p=bi.first(); p!=RuleBasedBreakIterator::DONE; p=bi.next()) {
414 for (p=bi.last(); p!=RuleBasedBreakIterator::DONE; p=bi.previous()) {
439 // cannot be -1; that is returned for DONE.
455 if (p == RuleBasedBreakIterator::DONE) {
467 // returned DONE.
469 errln("testFollowing(): iterator returned DONE prematurely.");
497 if (p == RuleBasedBreakIterator::DONE) {
509 // returned DONE.
511 errln("testPreceding(): iterator returned DONE prematurely.")
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
HifiUltrasoundSpeakerTestActivity.java 50 START, RECORDING, DONE, PLAYER
151 status = Status.DONE;
203 case DONE:
HifiUltrasoundTestActivity.java 47 START, RECORDING, DONE, PLAYER
131 status = Status.DONE;
183 case DONE:
  /external/icu/icu4c/source/common/
normlzr.cpp 260 return DONE;
267 * of the text has already been reached, {@link #DONE} is returned.
275 return DONE;
282 * of the text has already been reached, {@link #DONE} is returned.
290 return DONE;
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 407 while (wordStart <= end && wordEnd != BreakIterator.DONE
408 && wordStart != BreakIterator.DONE) {
419 if (wordEnd == BreakIterator.DONE) {
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
ConformanceTest.java 82 // all done
376 for (ch = normalizer.first(); ch != Normalizer.DONE;
381 for (ch = normalizer.last(); ch != Normalizer.DONE;
405 for (ch = normalizer.first(); ch != Normalizer.DONE;
410 for (ch = normalizer.last(); ch != Normalizer.DONE;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/search/
SearchTest.java     [all...]
  /external/icu/icu4c/source/common/unicode/
brkiter.h 14 * 02/18/97 aliu Added typedef for TextCount. Made DONE const.
215 * DONE is returned by previous() and next() after all valid
219 DONE = (int32_t)-1
238 * @return The character index of the previous text boundary or DONE if all
246 * @return The character index of the next text boundary or DONE if all
262 * the value BreakIterator.DONE
272 * the value BreakIterator.DONE
295 * DONE if there are fewer than |n| boundaries in the specified direction.
normlzr.h 138 * If DONE is returned from an iteration function that returns a code point,
143 DONE=0xffff
491 * If the end of the text has already been reached, DONE is returned.
492 * The DONE value could be confused with a U+FFFF non-character code point
494 * before calling next(), or (getIndex()<endIndex() || last()!=DONE)
507 * If the beginning of the text has already been reached, DONE is returned.
508 * The DONE value could be confused with a U+FFFF non-character code point
510 * (getIndex()>startIndex() || first()!=DONE). (Calling first() will change
649 * certain optional portions of the operation are done.
798 // all argument checking is done in unorm_compar
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/search/
SearchTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
ConformanceTest.java 79 // all done
373 for (ch = normalizer.first(); ch != Normalizer.DONE;
378 for (ch = normalizer.last(); ch != Normalizer.DONE;
402 for (ch = normalizer.first(); ch != Normalizer.DONE;
407 for (ch = normalizer.last(); ch != Normalizer.DONE;
  /external/llvm/tools/msbuild/
install.bat 46 IF %SUCCESS% == 1 goto DONE
114 :DONE
115 echo Done!
  /external/mesa3d/src/compiler/glsl/glcpp/
glcpp-lex.l 174 %x COMMENT DEFINE DONE HASH NEWLINE_CATCHUP UNREACHABLE
557 BEGIN DONE; /* Don't keep matching this rule forever. */
  /external/smali/util/src/main/java/org/jf/util/
StringWrapper.java 42 * Splits the given string into lines of maximum width maxWidth. The splitting is done using the current locale's
74 if (lineEnd == BreakIterator.DONE) {

Completed in 633 milliseconds

1 2 3 4 5 67 8 91011>>