Searched refs:DONE (Results 1 - 10 of 10) sorted by relevance

/libcore/luni/src/main/java/java/text/
H A DCharacterIterator.java31 public static final char DONE = '\uffff'; field in interface:CharacterIterator
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
H A DStringCharacterIterator.java114 * @return the current character, or {@code DONE} if the current index is
119 return DONE;
150 * @return the character at the begin index or {@code DONE} if the begin
155 return DONE;
197 * @return the character before the end index or {@code DONE} if the begin
202 return DONE;
211 * @return the character at the next index, or {@code DONE} if the next
217 return DONE;
225 * @return the character at the previous index, or {@code DONE} if the
230 return DONE;
[all...]
H A DBreakIterator.java68 * <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; field in class:BreakIterator
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} i
[all...]
H A DAttributedString.java114 return DONE;
121 return DONE;
347 return DONE;
356 return DONE;
363 return DONE;
374 return DONE;
410 while (iterator.current() != CharacterIterator.DONE) {
/libcore/luni/src/test/java/libcore/java/text/
H A DBreakIteratorTest.java91 while (pos != BreakIterator.DONE) {
98 expectedPos = BreakIterator.DONE; // ...unless we're done.
143 assertEquals(BreakIterator.DONE, it.following(5));
164 assertEquals(BreakIterator.DONE, it.preceding(0));
188 for (int index = it.first(); index != BreakIterator.DONE; index = it.next()) {
H A DOldAttributedStringTest.java35 while ((ch = it.next()) != CharacterIterator.DONE)
175 while ((ch = it.next()) != CharacterIterator.DONE)
/libcore/support/src/test/java/tests/support/
H A DSupport_Configuration.java305 int NONE = 0, SLASH = 1, UNICODE = 2, CONTINUE = 3, DONE = 4, IGNORE = 5;
403 mode = DONE;
412 if (mode == DONE) {
/libcore/luni/src/main/java/libcore/icu/
H A DRuleBasedCollatorICU.java120 for (char ch = it.current(); ch != CharacterIterator.DONE; ch = it.next()) {
H A DNativeBreakIterator.java116 for (char c = newText.first(); c != CharacterIterator.DONE; c = newText.next()) {
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 285 milliseconds