Searched refs:following (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/test/java/libcore/java/text/
H A DBreakIteratorTest.java134 it.following(-1);
140 assertEquals(1, it.following(0));
141 assertEquals(2, it.following(1));
142 assertEquals(5, it.following(4));
143 assertEquals(BreakIterator.DONE, it.following(5));
146 it.following(6);
/libcore/luni/src/main/java/java/text/
H A DRuleBasedBreakIterator.java42 @Override public int following(int offset) { method in class:RuleBasedBreakIterator
44 return wrapped.following(offset);
H A DBreakIterator.java59 * update the current position. All {@code BreakIterator}s uphold the following
179 * int end = boundary.following(pos);
194 * int last = wb.following(pos);
353 * is set as though {@link #following(int)} had been called.
410 * Sets the position of the first boundary to the one following the given
416 * @return the position of the first boundary following the given offset.
420 public abstract int following(int offset); method in class:BreakIterator
/libcore/luni/src/main/java/libcore/icu/
H A DNativeBreakIterator.java88 public int following(int offset) { method in class:NativeBreakIterator
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeBreakIterator.cpp143 return it->following(offset);

Completed in 126 milliseconds