Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/android/text/method/
DWordIteratorTest.java354 wordIterator.prevBoundary(-1); in testPrevBoundary()
359 wordIterator.prevBoundary(text.length() + 1); in testPrevBoundary()
365 currentOffset = wordIterator.prevBoundary(currentOffset); in testPrevBoundary()
368 currentOffset = wordIterator.prevBoundary(currentOffset); in testPrevBoundary()
371 currentOffset = wordIterator.prevBoundary(currentOffset); in testPrevBoundary()
374 currentOffset = wordIterator.prevBoundary(currentOffset); in testPrevBoundary()
377 currentOffset = wordIterator.prevBoundary(currentOffset); in testPrevBoundary()
380 currentOffset = wordIterator.prevBoundary(currentOffset); in testPrevBoundary()
383 currentOffset = wordIterator.prevBoundary(currentOffset); in testPrevBoundary()
386 currentOffset = wordIterator.prevBoundary(currentOffset); in testPrevBoundary()
[all …]
/frameworks/base/core/java/android/text/method/
DWordIterator.java125 public int prevBoundary(int offset) { in prevBoundary() method in WordIterator
287 offset = prevBoundary(offset); in getPunctuationBeginning()
/frameworks/base/core/java/android/widget/
DEditor.java894 int retOffset = getWordIteratorWithText().prevBoundary(offset); in getWordStart()