HomeSort by relevance Sort by last modified time
    Searched refs:DONE (Results 1 - 25 of 543) 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;
SearchIterator.java 42 * for (int pos = iter.first(); pos != SearchIterator.DONE;
105 /** Flag to indicate if overlapping search is to be done.
162 * DONE is returned by previous() and next() after all valid matches have
167 public static final int DONE = -1;
192 search_.matchedIndex_ = DONE;
250 search_.matchedIndex_ = DONE;
274 * {@link #DONE}, this method will return {@link #DONE}.
292 * (or past the beginning for a backwards search), {@link #DONE}
304 * {@link #DONE}, this method will return 0
    [all...]
  /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;
  /cts/tests/tests/text/src/android/text/method/cts/
WordIteratorTest.java 53 assertEquals(BreakIterator.DONE, mWordIterator.getBeginning(i));
54 assertEquals(BreakIterator.DONE, mWordIterator.getEnd(i));
61 assertEquals(BreakIterator.DONE, mWordIterator.following(0));
62 assertEquals(BreakIterator.DONE, mWordIterator.preceding(0));
64 assertEquals(BreakIterator.DONE, mWordIterator.getBeginning(0));
65 assertEquals(BreakIterator.DONE, mWordIterator.getEnd(0));
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
AbstractBreakIteratorTests.java 28 return DONE;
32 return DONE;
93 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 27 return DONE;
31 return DONE;
92 TestFmwk.assertEquals("BreakIterator preceding position not correct", BreakIterator.DONE, pos);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
SearchIterator.java 41 * for (int pos = iter.first(); pos != SearchIterator.DONE;
108 /** Flag to indicate if overlapping search is to be done.
165 * DONE is returned by previous() and next() after all valid matches have
171 public static final int DONE = -1;
197 search_.matchedIndex_ = DONE;
258 search_.matchedIndex_ = DONE;
282 * {@link #DONE}, this method will return {@link #DONE}.
301 * (or past the beginning for a backwards search), {@link #DONE}
314 * {@link #DONE}, this method will return 0
    [all...]
  /external/icu/icu4c/source/samples/citer/
citer.cpp 35 } else if (ch == CharacterIterator::DONE) {
36 u_fprintf(out, "[CharacterIterator::DONE = 0xFFFF]");
89 if (c == CharacterIterator::DONE && i != u_strlen(testText)) {
101 if (c != CharacterIterator::DONE) {
109 } while (c != CharacterIterator::DONE);
152 if (c == CharacterIterator::DONE) {
164 if (c != CharacterIterator::DONE) {
171 } while (c != CharacterIterator::DONE);
  /external/icu/icu4c/source/test/intltest/
citrtest.cpp 64 return DONE;
69 virtual UChar first(){return DONE;};
70 virtual UChar32 first32(){return DONE;};
71 virtual UChar last(){return DONE;};
72 virtual UChar32 last32(){return DONE;};
73 virtual UChar setIndex(int32_t /*pos*/){return DONE;};
74 virtual UChar32 setIndex32(int32_t /*pos*/){return DONE;};
75 virtual UChar current() const{return DONE;};
76 virtual UChar32 current32() const{return DONE;};
77 virtual UChar next(){return DONE;};
    [all...]

Completed in 775 milliseconds

1 2 3 4 5 6 7 8 91011>>