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

1 2 3 4 5 6 7 8 91011>>

  /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...]
chariter.h 66 * <li>nextPostInc() and next32PostInc() return DONE
82 * while((c=it.nextPostInc())!=ForwardCharacterIterator::DONE) {
98 enum { DONE = 0xffff };
148 * no more code units to return, returns DONE.
158 * no more code points to return, returns DONE.
234 * for(c=it.firstPostInc(); c!=CharacterIterator::DONE; c=it.nextPostInc()) {
253 * for(c=it.last(); c!=CharacterIterator::DONE; c=it.previous()) {
297 * for(char16_t c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
308 * for(char16_t c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
322 * c != CharacterIterator.DONE && (Unicode::isLetter(c) || Unicode::isDigit(c))
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i860/
dual03.s 35 bte r21,r17,DONE
38 DONE:
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UForwardCharacterIterator.java 53 * while((c=it.next())!=UForwardCharacterIterator.DONE) {
67 public static final int DONE = -1;
71 * range, DONE is returned, and the iterator is reset to the limit
73 * @return the next UTF16 code unit, or DONE if the index is at the limit
85 * @return the next codepoint in text, or DONE if the index is at
ComposedCharIter.java 70 public static final char DONE = (char) Normalizer.DONE;
109 if (nextChar == Normalizer.DONE) {
112 return nextChar != Normalizer.DONE;
120 * to <tt>next</tt> will return {@link #DONE}.
125 if (nextChar == Normalizer.DONE) {
129 nextChar = Normalizer.DONE;
164 c=Normalizer.DONE;
174 private int nextChar = Normalizer.DONE;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UForwardCharacterIterator.java 52 * while((c=it.next())!=UForwardCharacterIterator.DONE) {
67 public static final int DONE = -1;
71 * range, DONE is returned, and the iterator is reset to the limit
73 * @return the next UTF16 code unit, or DONE if the index is at the limit
86 * @return the next codepoint in text, or DONE if the index is at
ComposedCharIter.java 68 public static final char DONE = (char) Normalizer.DONE;
107 if (nextChar == Normalizer.DONE) {
110 return nextChar != Normalizer.DONE;
118 * to <tt>next</tt> will return {@link #DONE}.
123 if (nextChar == Normalizer.DONE) {
127 nextChar = Normalizer.DONE;
162 c=Normalizer.DONE;
172 private int nextChar = Normalizer.DONE;
  /device/google/cuttlefish_common/common/vsoc/lib/
lock_test.cpp 37 DONE,
50 state_ = DONE;
  /external/icu/icu4c/source/common/
ruleiter.h 36 // 2. Rather than return DONE, throw an exception if the end
69 enum { DONE = -1 };
112 * Returns the next character using the given options, or DONE if there
123 * @return the current 32-bit code point, or DONE
  /external/llvm/tools/msbuild/
install.bat 46 IF %SUCCESS% == 1 goto DONE
114 :DONE
115 echo Done!
  /external/tensorflow/tensorflow/core/grappler/utils/
traversal.cc 39 enum NodeState { NOT_VISITED = 0, VISITING = 1, DONE = 2 };
47 node_state[w.node] = DONE;
55 if (rslt == DONE) {
  /libcore/ojluni/src/main/java/java/text/
CharacterIterator.java 56 * The methods previous() and next() are used for iteration. They return DONE if
58 * signaling that the iterator has reached the end of the sequence. DONE is
67 * for(char c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
76 * for(char c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
88 * c != CharacterIterator.DONE && notBoundary(c);
93 * c != CharacterIterator.DONE && notBoundary(c);
113 public static final char DONE = '\uFFFF';
118 * @return the first character in the text, or DONE if the text is empty
126 * @return the last character in the text, or DONE if the text is empty
133 * @return the character at the current position or DONE if the curren
    [all...]
BreakIterator.java 139 * end != BreakIterator.DONE;
153 * start != BreakIterator.DONE;
202 * while (current != BreakIterator.DONE) {
210 * return BreakIterator.DONE;
255 * DONE is returned by previous(), next(), next(int), preceding(int)
259 public static final int DONE = -1;
278 * <code>BreakIterator.DONE</code> and the current position is set to either
285 * <code>BreakIterator.DONE</code> and the last text boundary would become the
291 * or <code>BreakIterator.DONE</code> if either first or last text boundary
298 * is the last text boundary, it returns <code>BreakIterator.DONE</code> an
    [all...]
  /external/curl/src/
tool_getpass.c 96 #define DONE
132 #define DONE
171 #define DONE
174 #ifndef DONE /* not previously provided */
253 #endif /* DONE */
  /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
  /toolchain/binutils/binutils-2.27/zlib/contrib/infback9/
inflate9.h 17 DONE, /* finished check, done -- remain here until reset */
27 TYPE -> STORED or TABLE or LEN or DONE
  /frameworks/base/services/core/java/com/android/server/notification/
RankingReconsideration.java 30 private static final int DONE = 2;
57 mState = DONE;
69 if (mState == START) { // can't cancel if running or done
81 return mState == DONE;
  /hardware/qcom/gps/msm8084/utils/
loc_timer.c 40 DONE,
84 t->state = DONE;
  /hardware/qcom/gps/msm8994/utils/
loc_timer.c 40 DONE,
84 t->state = DONE;
  /hardware/qcom/gps/utils/
loc_timer.c 40 DONE,
84 t->state = DONE;
  /external/brotli/java/org/brotli/wrapper/dec/
DecoderJNI.java 23 DONE,
62 lastStatus = Status.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

Completed in 94 milliseconds

1 2 3 4 5 6 7 8 91011>>