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

  /frameworks/base/core/tests/coretests/src/android/text/method/
WordIteratorTest.java 306 wordIterator.nextBoundary(-1);
307 fail("nextBoundary with invalid offset should throw IllegalArgumentException.");
311 wordIterator.nextBoundary(text.length() + 1);
312 fail("nextBoundary with invalid offset should throw IllegalArgumentException.");
318 currentOffset = wordIterator.nextBoundary(currentOffset);
321 currentOffset = wordIterator.nextBoundary(currentOffset);
324 currentOffset = wordIterator.nextBoundary(currentOffset);
327 currentOffset = wordIterator.nextBoundary(currentOffset);
330 currentOffset = wordIterator.nextBoundary(currentOffset);
333 currentOffset = wordIterator.nextBoundary(currentOffset)
    [all...]
  /frameworks/base/core/java/android/text/method/
WordIterator.java 105 public int nextBoundary(int offset) {
290 offset = nextBoundary(offset);
292 // No need to shift offset, nextBoundary handles that.
  /prebuilts/go/darwin-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 403 // NextBoundary reports the index of the boundary between the first and next
406 func (f Form) NextBoundary(b []byte, atEOF bool) int {
407 return f.nextBoundary(inputBytes(b), len(b), atEOF)
414 return f.nextBoundary(inputString(s), len(s), atEOF)
417 func (f Form) nextBoundary(src input, nsrc int, atEOF bool) int {
  /prebuilts/go/linux-x86/src/vendor/golang_org/x/text/unicode/norm/
normalize.go 403 // NextBoundary reports the index of the boundary between the first and next
406 func (f Form) NextBoundary(b []byte, atEOF bool) int {
407 return f.nextBoundary(inputBytes(b), len(b), atEOF)
414 return f.nextBoundary(inputString(s), len(s), atEOF)
417 func (f Form) nextBoundary(src input, nsrc int, atEOF bool) int {
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]

Completed in 400 milliseconds