/frameworks/native/cmds/installd/ |
otapreopt_script.sh | 33 DONE=$(cmd otadexopt done) 34 if [ "$DONE" = "OTA complete." ] ; then 39 done 41 DONE=$(cmd otadexopt done) 42 if [ "$DONE" = "OTA incomplete." ] ; then
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
UForwardCharacterIterator.java | 51 * while((c=it.next())!=UForwardCharacterIterator.DONE) { 65 public static final int DONE = -1; 69 * range, DONE is returned, and the iterator is reset to the limit 71 * @return the next UTF16 code unit, or DONE if the index is at the limit 83 * @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;
|
SearchIterator.java | 40 * for (int pos = iter.first(); pos != SearchIterator.DONE; 103 /** Flag to indicate if overlapping search is to be done. 160 * DONE is returned by previous() and next() after all valid matches have 165 public static final int DONE = -1; 190 search_.matchedIndex_ = DONE; 248 search_.matchedIndex_ = DONE; 272 * {@link #DONE}, this method will return {@link #DONE}. 290 * (or past the beginning for a backwards search), {@link #DONE} 302 * {@link #DONE}, this method will return 0 [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
UForwardCharacterIterator.java | 50 * while((c=it.next())!=UForwardCharacterIterator.DONE) { 65 public static final int DONE = -1; 69 * range, DONE is returned, and the iterator is reset to the limit 71 * @return the next UTF16 code unit, or DONE if the index is at the limit 84 * @return the next codepoint in text, or DONE if the index is at
|
ComposedCharIter.java | 66 public static final char DONE = (char) Normalizer.DONE; 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;
|
/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 | 38 if(c==CharacterIterator.DONE){ 39 return DONE; 64 if(i==CharacterIterator.DONE){ 65 return DONE; 75 if(i==CharacterIterator.DONE){ 76 return DONE; 109 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) {
|
StringUCharacterIterator.java | 73 return DONE; 99 * the currentIndex is reset to the text length and a value of DONE is 101 * @return next UTF16 character in text or DONE if the new currentIndex is 110 return DONE; 118 * to 0 and a value of DONE is returned. 119 * @return next UTF16 character in text or DONE if the new currentIndex is 127 return DONE;
|
UCharArrayIterator.java | 40 return pos < limit ? text[pos] : DONE; 52 return pos < limit ? text[pos++] : DONE; 56 return pos > start ? text[--pos] : DONE;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
CharacterIteratorWrapper.java | 36 if(c==CharacterIterator.DONE){ 37 return DONE; 62 if(i==CharacterIterator.DONE){ 63 return DONE; 73 if(i==CharacterIterator.DONE){ 74 return DONE; 107 for (char ch = iterator.first(); ch != CharacterIterator.DONE; ch = iterator.next()) {
|
StringUCharacterIterator.java | 71 return DONE; 97 * the currentIndex is reset to the text length and a value of DONE is 99 * @return next UTF16 character in text or DONE if the new currentIndex is 108 return DONE; 116 * to 0 and a value of DONE is returned. 117 * @return next UTF16 character in text or DONE if the new currentIndex is 125 return DONE;
|
UCharArrayIterator.java | 38 return pos < limit ? text[pos] : DONE; 50 return pos < limit ? text[pos++] : DONE; 54 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;
|
/cts/tests/tests/text/src/android/text/method/cts/ |
WordIteratorTest.java | 47 assertEquals(BreakIterator.DONE, wi.getBeginning(i)); 48 assertEquals(BreakIterator.DONE, wi.getEnd(i)); 54 assertEquals(BreakIterator.DONE, wi.following(0)); 55 assertEquals(BreakIterator.DONE, wi.preceding(0)); 57 assertEquals(BreakIterator.DONE, wi.getBeginning(0)); 58 assertEquals(BreakIterator.DONE, wi.getEnd(0));
|
/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 | 101 return DONE; 111 return DONE; 121 return DONE; 137 return DONE; 146 return DONE; 155 /* make current() return DONE */ 157 return DONE; 166 return DONE; 180 return DONE; 198 return DONE; [all...] |
ruleiter.cpp | 37 if (U_FAILURE(ec)) return DONE; 39 UChar32 c = DONE; 58 return DONE; 79 return DONE; 140 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/method/ |
WordIterator.java | 75 if (shiftedOffset == BreakIterator.DONE) { 76 return BreakIterator.DONE; 89 if (shiftedOffset == BreakIterator.DONE) { 90 return BreakIterator.DONE; 107 * {@code DONE} if there is no boundary after the given offset. 115 if (shiftedOffset == BreakIterator.DONE) { 116 return BreakIterator.DONE; 123 * {@code DONE} if the given offset specifies the starting position. 131 if (shiftedOffset == BreakIterator.DONE) { 132 return BreakIterator.DONE; [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
SearchIterator.java | 39 * for (int pos = iter.first(); pos != SearchIterator.DONE; 106 /** Flag to indicate if overlapping search is to be done. 163 * DONE is returned by previous() and next() after all valid matches have 169 public static final int DONE = -1; 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 [all...] |
/external/icu/icu4c/source/samples/citer/ |
citer.cpp | 29 } else if (ch == CharacterIterator::DONE) { 30 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]"); 83 if (c == CharacterIterator::DONE && i != u_strlen(testText)) { 95 if (c != CharacterIterator::DONE) { 103 } while (c != CharacterIterator::DONE); 146 if (c == CharacterIterator::DONE) { 158 if (c != CharacterIterator::DONE) { 165 } while (c != CharacterIterator::DONE);
|
/external/icu/icu4c/source/test/intltest/ |
citrtest.cpp | 62 return DONE; 67 virtual UChar first(){return DONE;}; 68 virtual UChar32 first32(){return DONE;}; 69 virtual UChar last(){return DONE;}; 70 virtual UChar32 last32(){return DONE;}; 71 virtual UChar setIndex(int32_t /*pos*/){return DONE;}; 72 virtual UChar32 setIndex32(int32_t /*pos*/){return DONE;}; 73 virtual UChar current() const{return DONE;}; 74 virtual UChar32 current32() const{return DONE;}; 75 virtual UChar next(){return DONE;}; [all...] |