HomeSort by relevance Sort by last modified time
    Searched defs:DONE (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/icu/source/common/unicode/
brkiter.h 12 * 02/18/97 aliu Added typedef for TextCount. Made DONE const.
203 * DONE is returned by previous() and next() after all valid
207 DONE = (int32_t)-1
224 * @return The character index of the previous text boundary or DONE if all
232 * @return The character index of the next text boundary or DONE if all
248 * the value BreakIterator.DONE
258 * the value BreakIterator.DONE
281 * DONE if there are fewer than |n| boundaries in the specfied direction.
normlzr.h 133 * If DONE is returned from an iteration function that returns a code point,
138 DONE=0xffff
482 * If the end of the text has already been reached, DONE is returned.
483 * The DONE value could be confused with a U+FFFF non-character code point
485 * before calling next(), or (getIndex()<endIndex() || last()!=DONE)
498 * If the beginning of the text has already been reached, DONE is returned.
499 * The DONE value could be confused with a U+FFFF non-character code point
501 * (getIndex()>startIndex() || first()!=DONE). (Calling first() will change
640 * certain optional portions of the operation are done.
786 // all argument checking is done in unorm_compar
    [all...]
chariter.h 64 * <li>nextPostInc() and next32PostInc() return DONE
80 * while((c=it.nextPostInc())!=ForwardCharacterIterator::DONE) {
96 enum { DONE = 0xffff };
146 * no more code units to return, returns DONE.
156 * no more code points to return, returns DONE.
232 * for(c=it.firstPostInc(); c!=CharacterIterator::DONE; c=it.nextPostInc()) {
251 * for(c=it.last(); c!=CharacterIterator::DONE; c=it.previous()) {
295 * for(UChar c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
306 * for(UChar c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
320 * c != CharacterIterator.DONE && (Unicode::isLetter(c) || Unicode::isDigit(c))
    [all...]
  /external/icu4c/common/unicode/
brkiter.h 12 * 02/18/97 aliu Added typedef for TextCount. Made DONE const.
208 * DONE is returned by previous() and next() after all valid
212 DONE = (int32_t)-1
231 * @return The character index of the previous text boundary or DONE if all
239 * @return The character index of the next text boundary or DONE if all
255 * the value BreakIterator.DONE
265 * the value BreakIterator.DONE
288 * DONE if there are fewer than |n| boundaries in the specfied direction.
normlzr.h 133 * If DONE is returned from an iteration function that returns a code point,
138 DONE=0xffff
482 * If the end of the text has already been reached, DONE is returned.
483 * The DONE value could be confused with a U+FFFF non-character code point
485 * before calling next(), or (getIndex()<endIndex() || last()!=DONE)
498 * If the beginning of the text has already been reached, DONE is returned.
499 * The DONE value could be confused with a U+FFFF non-character code point
501 * (getIndex()>startIndex() || first()!=DONE). (Calling first() will change
640 * certain optional portions of the operation are done.
786 // all argument checking is done in unorm_compar
    [all...]
chariter.h 64 * <li>nextPostInc() and next32PostInc() return DONE
80 * while((c=it.nextPostInc())!=ForwardCharacterIterator::DONE) {
96 enum { DONE = 0xffff };
146 * no more code units to return, returns DONE.
156 * no more code points to return, returns DONE.
232 * for(c=it.firstPostInc(); c!=CharacterIterator::DONE; c=it.nextPostInc()) {
251 * for(c=it.last(); c!=CharacterIterator::DONE; c=it.previous()) {
295 * for(UChar c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
306 * for(UChar c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
320 * c != CharacterIterator.DONE && (Unicode::isLetter(c) || Unicode::isDigit(c))
    [all...]
  /external/chromium_org/content/browser/renderer_host/input/
synthetic_tap_gesture.h 29 DONE
synthetic_pinch_gesture.h 30 DONE
synthetic_smooth_scroll_gesture.h 35 DONE
  /external/chromium_org/third_party/icu/source/common/
ruleiter.h 34 // 2. Rather than return DONE, throw an exception if the end
67 enum { DONE = -1 };
111 * Returns the next character using the given options, or DONE if there
122 * @return the current 32-bit code point, or DONE
  /external/icu4c/common/
ruleiter.h 34 // 2. Rather than return DONE, throw an exception if the end
67 enum { DONE = -1 };
110 * Returns the next character using the given options, or DONE if there
121 * @return the current 32-bit code point, or DONE
  /libcore/luni/src/main/java/java/text/
CharacterIterator.java 31 public static final char DONE = '\uffff';
45 * @return the current character, or {@code DONE} if the current index is
90 * @return the character at the next index, or {@code DONE} if the next
98 * @return the character at the previous index, or {@code DONE} if the
109 * @return the character at the new index, or {@code DONE} if the index is
BreakIterator.java 68 * <li>{@code DONE} is used as a flag to indicate when iteration has stopped.
69 * {@code DONE} is only returned when the current position is the end of the
125 * for (int end = boundary.next(); end != BreakIterator.DONE; start = end, end = boundary.next()) {
139 * for (int start = boundary.previous(); start != BreakIterator.DONE; end = start, start = boundary
196 * while (current != BreakIterator.DONE) {
204 * return BreakIterator.DONE;
231 public static final int DONE = -1;
366 * sets the current position to the returned value, or {@code DONE} if the
411 * offset and returns this position. Returns {@code DONE} if there is no
444 * current position, and returns this position. Returns {@code DONE} if n
    [all...]
  /external/chromium/chrome/browser/sync/
sync_setup_wizard.h 53 // A catch-all done case for any setup process.
54 DONE
  /external/chromium/net/url_request/
url_request_test_job.h 104 // When the stage is DONE, this job will not be put on the queue.
105 enum Stage { WAITING, DATA_AVAILABLE, ALL_DATA, DONE };
  /external/chromium_org/chrome/test/base/
javascript_test_observer.h 30 DONE
70 // test is done running. Return true if the test jig functioned correctly and
  /external/guava/guava/src/com/google/common/base/
AbstractIterator.java 37 READY, NOT_READY, DONE, FAILED,
45 state = State.DONE;
53 case DONE:
65 if (state != State.DONE) {
  /external/guava/guava/src/com/google/common/collect/
AbstractIterator.java 78 DONE,
124 state = State.DONE;
132 case DONE:
144 if (state != State.DONE) {
  /external/zlib/src/contrib/infback9/
inflate9.h 17 DONE, /* finished check, done -- remain here until reset */
27 TYPE -> STORED or TABLE or LEN or DONE
  /external/chromium_org/net/url_request/
url_request_test_job.h 125 // Override to specify whether the next read done from this job will
132 // When the stage is DONE, this job will not be put on the queue.
133 enum Stage { WAITING, DATA_AVAILABLE, ALL_DATA, DONE };
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReader.h 61 DONE = 2
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileWriter.h 58 DONE = 2
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumbermatcher.h 101 DONE,
192 // The next index to start searching at. Undefined in State.DONE.
  /external/chromium_org/v8/test/cctest/
test-threads.cc 40 DONE
81 turn = DONE;
123 CHECK_EQ(DONE, turn);
  /external/v8/test/cctest/
test-threads.cc 60 DONE
97 turn = DONE;
138 CHECK_EQ(DONE, turn);

Completed in 226 milliseconds

1 2 3 4 5 6