Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DSpellChecker.java602 int spellCheckEnd = mWordIterator.preceding(wordIteratorWindowEnd); in parse() local
603 boolean correct = spellCheckEnd != BreakIterator.DONE; in parse()
605 spellCheckEnd = mWordIterator.getEnd(spellCheckEnd); in parse()
606 correct = spellCheckEnd != BreakIterator.DONE; in parse()
627 if (spanEnd < spellCheckStart || spellCheckEnd < spanStart) { in parse()
631 if (spanStart <= spellCheckStart && spellCheckEnd <= spanEnd) { in parse()
643 spellCheckEnd = Math.max(spanEnd, spellCheckEnd); in parse()
648 + ", End = " + spellCheckEnd + ", Start = " + spellCheckStart in parse()
650 + editable.subSequence(spellCheckStart, spellCheckEnd)); in parse()
654 if (spellCheckEnd < start) { in parse()
[all …]