HomeSort by relevance Sort by last modified time
    Searched refs:nextBoundary (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/tests/coretests/src/android/text/method/
WordIteratorTest.java 134 wordIterator.nextBoundary(-1);
135 fail("nextBoundary with invalid offset should throw IllegalArgumentException.");
139 wordIterator.nextBoundary(text.length() + 1);
140 fail("nextBoundary with invalid offset should throw IllegalArgumentException.");
146 currentOffset = wordIterator.nextBoundary(currentOffset);
149 currentOffset = wordIterator.nextBoundary(currentOffset);
152 currentOffset = wordIterator.nextBoundary(currentOffset);
155 currentOffset = wordIterator.nextBoundary(currentOffset);
158 currentOffset = wordIterator.nextBoundary(currentOffset);
161 currentOffset = wordIterator.nextBoundary(currentOffset)
    [all...]
  /frameworks/base/core/java/android/text/method/
WordIterator.java 112 public int nextBoundary(int offset) {
305 offset = nextBoundary(offset);
307 // No need to shift offset, nextBoundary handles that.
  /frameworks/base/core/java/android/widget/
Editor.java 778 int retOffset = getWordIteratorWithText().nextBoundary(offset);
    [all...]

Completed in 646 milliseconds