Home
last modified time | relevance | path

Searched refs:nextBoundary (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/text/method/
DWordIteratorTest.java192 wordIterator.nextBoundary(-1); in testNextBoundary()
197 wordIterator.nextBoundary(text.length() + 1); in testNextBoundary()
204 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
207 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
210 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
213 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
216 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
219 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
222 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
225 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
[all …]
/frameworks/base/core/java/android/text/method/
DWordIterator.java105 public int nextBoundary(int offset) { in nextBoundary() method in WordIterator
290 offset = nextBoundary(offset); in getPunctuationEnd()
/frameworks/base/core/java/android/view/textclassifier/
DTextClassifierImpl.java446 while ((end = wordIterator.nextBoundary(start)) != BreakIterator.DONE) { in create()
/frameworks/base/core/java/android/widget/
DEditor.java801 int retOffset = getWordIteratorWithText().nextBoundary(offset); in getWordEnd()