OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DONE
(Results
1 - 25
of
91
) sorted by null
1
2
3
4
/external/icu4c/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
226
* @return The character index of the previous text boundary or
DONE
if all
234
* @return The character index of the next text boundary or
DONE
if all
250
* the value BreakIterator.
DONE
260
* the value BreakIterator.
DONE
283
*
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/
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/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/v8/test/cctest/
test-threads.cc
60
DONE
97
turn =
DONE
;
138
CHECK_EQ(
DONE
, turn);