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

1 2 3 4 5 6 7 8 91011>>

  /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;
  /frameworks/native/cmds/installd/
otapreopt_script.sh 54 # Note: Ignore preparation failures. Step and done will fail and exit this.
70 DONE=$(cmd otadexopt done)
71 if [ "$DONE" = "OTA incomplete." ] ; then
77 done
79 DONE=$(cmd otadexopt done)
80 if [ "$DONE" = "OTA incomplete." ] ; then
  /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...]
  /external/valgrind/VEX/priv/
s390_disasm.h 40 #define ENC1(a) ((P(DONE) << 4) | P(a))
42 #define ENC2(a,b) ((P(DONE) << 8) | (P(b) << 4) | P(a))
44 #define ENC3(a,b,c) ((P(DONE) << 12) | (P(c) << 8) | (P(b) << 4) | P(a))
46 #define ENC4(a,b,c,d) ((P(DONE) << 16) | (P(d) << 12) | (P(c) << 8) | \
49 #define ENC5(a,b,c,d,e) ((P(DONE) << 20) | (P(e) << 16) | (P(d) << 12) | \
52 #define ENC6(a,b,c,d,e,f) ((P(DONE) << 24) | (P(f) << 20) | (P(e) << 16) | \
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CharacterIteratorWrapper.java 41 if(c==CharacterIterator.DONE){
42 return DONE;
70 if(i==CharacterIterator.DONE){
71 return DONE;
82 if(i==CharacterIterator.DONE){
83 return DONE;
119 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) {
UCharArrayIterator.java 43 return pos < limit ? text[pos] : DONE;
58 return pos < limit ? text[pos++] : DONE;
63 return pos > start ? text[--pos] : DONE;
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CharacterIteratorWrapper.java 39 if(c==CharacterIterator.DONE){
40 return DONE;
68 if(i==CharacterIterator.DONE){
69 return DONE;
80 if(i==CharacterIterator.DONE){
81 return DONE;
117 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) {
UCharArrayIterator.java 41 return pos < limit ? text[pos] : DONE;
56 return pos < limit ? text[pos++] : DONE;
61 return pos > start ? text[--pos] : 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;
  /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/icu/icu4c/source/common/
uchriter.cpp 103 return DONE;
113 return DONE;
123 return DONE;
139 return DONE;
148 return DONE;
157 /* make current() return DONE */
159 return DONE;
168 return DONE;
182 return DONE;
200 return DONE;
    [all...]
ruleiter.cpp 39 if (U_FAILURE(ec)) return DONE;
41 UChar32 c = DONE;
60 return DONE;
81 return DONE;
142 return (i < text.length()) ? text.char32At(i) : (UChar32)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
  /frameworks/base/core/java/android/text/
CharSequenceCharacterIterator.java 50 return DONE;
58 return (mIndex == mEndIndex) ? DONE : mCharSeq.charAt(mIndex);
65 return DONE;
73 return 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
  /device/google/cuttlefish_common/common/vsoc/lib/
lock_test.cpp 37 DONE,
50 state_ = DONE;
  /external/tensorflow/tensorflow/contrib/mpi_collectives/
mpi_message.proto 46 // an error message instead. Finally, an MPIResponse can be a DONE message (if
54 DONE = 3;
58 // Empty if the type is DONE or SHUTDOWN.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
AbstractBreakIteratorTests.java 33 return DONE;
37 return DONE;
98 TestFmwk.assertEquals("BreakIterator preceding position not correct", BreakIterator.DONE, pos);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
AbstractBreakIteratorTests.java 30 return DONE;
34 return DONE;
95 TestFmwk.assertEquals("BreakIterator preceding position not correct", BreakIterator.DONE, pos);
  /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) {
  /external/python/cpython3/Lib/test/
test_asyncgen.py 454 DONE = 0
470 nonlocal DONE
475 DONE = 1
478 nonlocal DONE
483 DONE += 10
486 self.assertEqual(DONE, 11)
551 DONE = 0
554 nonlocal DONE
561 DONE += 1
562 DONE += 100
    [all...]

Completed in 655 milliseconds

1 2 3 4 5 6 7 8 91011>>