Searched defs:DONE (Results 1 - 25 of 90) sorted by relevance

1234

/external/icu/icu4c/source/common/unicode/
H A Dbrkiter.h14 * 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 enumerator in enum:BreakIterator::__anon7232
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 specfied direction.
H A Dchariter.h66 * <li>nextPostInc() and next32PostInc() return DONE
82 * while((c=it.nextPostInc())!=ForwardCharacterIterator::DONE) {
98 enum { DONE = 0xffff }; enumerator in enum:ForwardCharacterIterator::__anon7233
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(UChar c = iter.first(); c != CharacterIterator.DONE; c = iter.next()) {
308 * for(UChar c = iter.last(); c != CharacterIterator.DONE; c = iter.previous()) {
322 * c != CharacterIterator.DONE
[all...]
H A Dnormlzr.h138 * If DONE is returned from an iteration function that returns a code point,
143 DONE=0xffff enumerator in enum:Normalizer::__anon7237
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
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUForwardCharacterIterator.java53 * while((c=it.next())!=UForwardCharacterIterator.DONE) {
67 public static final int DONE = -1; field in interface:UForwardCharacterIterator
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
H A DComposedCharIter.java70 public static final char DONE = (char) Normalizer.DONE; field in class:ComposedCharIter
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/
H A DUForwardCharacterIterator.java52 * while((c=it.next())!=UForwardCharacterIterator.DONE) {
67 public static final int DONE = -1; field in interface:UForwardCharacterIterator
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
H A DComposedCharIter.java68 public static final char DONE = (char) Normalizer.DONE; field in class:ComposedCharIter
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;
/external/icu/icu4c/source/common/
H A Druleiter.h36 // 2. Rather than return DONE, throw an exception if the end
69 enum { DONE = -1 }; enumerator in enum:RuleCharacterIterator::__anon7138
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/
H A Dinstall.bat46 IF %SUCCESS% == 1 goto DONE
114 :DONE label
/external/guava/guava/src/com/google/common/base/
H A DAbstractIterator.java37 READY, NOT_READY, DONE, FAILED, enum constant in enum:AbstractIterator.State
45 state = State.DONE;
53 case DONE:
65 if (state != State.DONE) {
/external/guava/guava/src/com/google/common/collect/
H A DAbstractIterator.java78 DONE, enum constant in enum:AbstractIterator.State
124 state = State.DONE;
132 case DONE:
144 if (state != State.DONE) {
/external/zlib/src/contrib/infback9/
H A Dinflate9.h17 DONE, /* finished check, done -- remain here until reset */ enumerator in enum:__anon25828
27 TYPE -> STORED or TABLE or LEN or DONE
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DCaptureActivityHandler.java48 DONE enum constant in enum:CaptureActivityHandler.State
103 state = State.DONE;
/external/curl/src/
H A Dtool_getpass.c96 #define DONE macro
132 #define DONE macro
171 #define DONE macro
174 #ifndef DONE /* not previously provided */
255 #endif /* DONE */
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DRuleCharacterIterator.java33 // 2. Rather than return DONE, throw an exception if the end
71 public static final int DONE = -1; field in class:RuleCharacterIterator
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;
H A DPatternTokenizer.java243 if (status == DONE) {
255 public static final int DONE = 0, SYNTAX = 1, LITERAL = 2, BROKEN_QUOTE = 3, BROKEN_ESCAPE = 4, UNKNOWN = 5; field in class:PatternTokenizer
260 if (start >= limit) return DONE;
/external/freetype/src/gzip/
H A Dinflate.c9 #define DONE INFLATE_DONE macro
25 DONE, /* finished check, done */ enumerator in enum:__anon6645
233 z->state->mode = DONE;
261 z->state->mode = DONE;
262 case DONE:
H A Dinfutil.h23 DONE, /* finished last block, done */ enumerator in enum:__anon6650
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
H A DBreakIterator.java60 * <li>DONE is used as a flag to indicate when iteration has stopped. DONE is only
113 * end != BreakIterator.DONE;
127 * start != BreakIterator.DONE;
176 * while (current != BreakIterator.DONE) {
184 * return BreakIterator.DONE;
236 * DONE is returned by previous() and next() after all valid
240 public static final int DONE = -1; field in class:BreakIterator
269 * to advance off either end of the text, this function returns DONE;
276 * iteration position, or DONE i
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRuleCharacterIterator.java32 // 2. Rather than return DONE, throw an exception if the end
70 public static final int DONE = -1; field in class:RuleCharacterIterator
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;
/external/javassist/src/main/javassist/bytecode/stackmap/
H A DLiveness.java58 static final int DONE = 2; field in class:Liveness
102 tb.status = DONE;
122 tb.status = DONE;
127 if (tb.updating || tb.status >= DONE)
132 tb.status = DONE;
138 if (e.status != DONE)
148 if (e.status != DONE)
158 tb.status = changed ? CHANGED_NOW : DONE;
161 tb.status = DONE;
176 if (h.status != DONE) {
[all...]
/external/v8/src/heap/
H A Dgc-idle-time-handler.h14 DONE, enumerator in enum:v8::internal::GCIdleTimeActionType
25 result.type = DONE;
/external/apache-http/android/src/android/net/http/
H A DConnection.java49 private static final int DONE = 3; field in class:Connection
50 private static final String[] states = {"SEND", "READ", "DRAIN", "DONE"};
165 while (state != DONE) {
216 state = DONE;
250 state = clearPipe(pipe) ? DONE : SEND;
270 state = empty ? DONE : SEND;
/external/autotest/client/tests/tsc/src/
H A Dchecktsc.c167 #define DONE 2 macro
217 set_state(&master, DONE);
218 wait_for_state(&slave, DONE);
264 wait_for_state(&master, DONE);
268 set_state(&slave, DONE);
/external/clang/test/Sema/
H A Dtype-spec-struct-union.c56 SQUAT, FLAG, DICT4, DICT3, DICT2, DICT1, DICT0, HOP, CHECK4, CHECK3, CHECK2, CHECK1, DONE, BAD enumerator in enum:bar_baz::__anon2903

Completed in 699 milliseconds

1234