Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/text/method/
DWordIteratorTest.java307 wordIterator.nextBoundary(-1); in testNextBoundary()
312 wordIterator.nextBoundary(text.length() + 1); in testNextBoundary()
319 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
322 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
325 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
328 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
331 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
334 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
337 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
340 currentOffset = wordIterator.nextBoundary(currentOffset); in testNextBoundary()
[all …]
/frameworks/base/core/java/android/text/method/
DWordIterator.java112 public int nextBoundary(int offset) { in nextBoundary() method in WordIterator
304 offset = nextBoundary(offset); in getPunctuationEnd()
/frameworks/base/core/java/android/widget/
DEditor.java909 int retOffset = getWordIteratorWithText().nextBoundary(offset); in getWordEnd()