Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DEditor.java1030 int retOffset = getWordIteratorWithText().prevBoundary(offset); in getWordStart()
1031 if (getWordIteratorWithText().isOnPunctuation(retOffset)) { in getWordStart()
1033 retOffset = getWordIteratorWithText().getPunctuationBeginning(offset); in getWordStart()
1036 retOffset = getWordIteratorWithText().getPrevWordBeginningOnTwoWordsBoundary(offset); in getWordStart()
1045 int retOffset = getWordIteratorWithText().nextBoundary(offset); in getWordEnd()
1046 if (getWordIteratorWithText().isAfterPunctuation(retOffset)) { in getWordEnd()
1048 retOffset = getWordIteratorWithText().getPunctuationEnd(offset); in getWordEnd()
1051 retOffset = getWordIteratorWithText().getNextWordEndOnTwoWordBoundary(offset); in getWordEnd()
1207 private WordIterator getWordIteratorWithText() { in getWordIteratorWithText() method in Editor
5909 mInWord = (offset != -1) && !getWordIteratorWithText().isBoundary(offset);