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

123

/external/v8/test/test262-es6/
H A Dharness-adapt.js84 function $DONE(arg){
/external/icu/icu4c/source/common/unicode/
H A Dbrkiter.h12 * 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 enumerator in enum:BreakIterator::__anon5571
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.
H A Dchariter.h64 * <li>nextPostInc() and next32PostInc() return DONE
80 * while((c=it.nextPostInc())!=ForwardCharacterIterator::DONE) {
96 enum { DONE = 0xffff }; enumerator in enum:ForwardCharacterIterator::__anon5572
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
[all...]
H A Dnormlzr.h133 * If DONE is returned from an iteration function that returns a code point,
138 DONE=0xffff enumerator in enum:Normalizer::__anon5576
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
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUForwardCharacterIterator.java50 * while((c=it.next())!=UForwardCharacterIterator.DONE) {
66 public static final int DONE = -1; field in interface:UForwardCharacterIterator
70 * range, DONE is returned, and the iterator is reset to the limit
72 * @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.java66 public static final char DONE = (char) Normalizer.DONE; field in class:ComposedCharIter
105 if (nextChar == Normalizer.DONE) {
108 return nextChar != Normalizer.DONE;
116 * to <tt>next</tt> will return {@link #DONE}.
121 if (nextChar == Normalizer.DONE) {
125 nextChar = Normalizer.DONE;
160 c=Normalizer.DONE;
170 private int nextChar = Normalizer.DONE;
/external/icu/icu4c/source/common/
H A Druleiter.h34 // 2. Rather than return DONE, throw an exception if the end
67 enum { DONE = -1 }; enumerator in enum:RuleCharacterIterator::__anon5482
110 * Returns the next character using the given options, or DONE if there
121 * @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:__anon17861
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/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DLivenessAnalyzer.java76 DONE; enum constant in enum:LivenessAnalyzer.NextFunction
128 while (nextFunction != NextFunction.DONE) {
131 nextFunction = NextFunction.DONE;
136 nextFunction = NextFunction.DONE;
141 nextFunction = NextFunction.DONE;
157 nextFunction = NextFunction.DONE;
/external/v8/test/cctest/
H A Dtest-threads.cc39 DONE enumerator in enum:Turn
80 turn = DONE;
122 CHECK_EQ(DONE, turn);
/external/freetype/src/gzip/
H A Dinflate.c9 #define DONE INFLATE_DONE macro
25 DONE, /* finished check, done */ enumerator in enum:__anon5049
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:__anon5054
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRuleCharacterIterator.java30 // 2. Rather than return DONE, throw an exception if the end
68 public static final int DONE = -1; field in class:RuleCharacterIterator
121 * Returns the next character using the given options, or DONE if there
126 * @return the current 32-bit code point, or DONE
129 int c = DONE;
324 return (i < text.length()) ? UTF16.charAt(text, i) : DONE;
H A DPatternTokenizer.java239 if (status == DONE) {
251 public static final int DONE = 0, SYNTAX = 1, LITERAL = 2, BROKEN_QUOTE = 3, BROKEN_ESCAPE = 4, UNKNOWN = 5; field in class:PatternTokenizer
256 if (start >= limit) return 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/
H A Dlithium-codegen.h60 DONE, enumerator in enum:v8::internal::BASE_EMBEDDED::Status
76 bool is_done() const { return status_ == 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/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::__anon2417
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DSearchIterator.java39 * for (int pos = iter.first(); pos != SearchIterator.DONE;
163 * DONE is returned by previous() and next() after all valid matches have
169 public static final int DONE = -1; field in class:SearchIterator
195 search_.matchedIndex_ = DONE;
256 search_.matchedIndex_ = DONE;
280 * {@link #DONE}, this method will return {@link #DONE}.
299 * (or past the beginning for a backwards search), {@link #DONE}
312 * {@link #DONE}, this method will return 0.
355 * construction or after {@link #DONE} ha
[all...]
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberMatcher.java186 NOT_READY, READY, DONE enum constant in enum:PhoneNumberMatcher.State
207 /** The next index to start searching at. Undefined in {@link State#DONE}. */
697 state = State.DONE;
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlLexer.java347 DONE, enum constant in enum:HtmlInputSplitter.State
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;
647 case DONE
[all...]

Completed in 1141 milliseconds

123