Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DSpellChecker.java721 int spellCheckEnd = sentenceEnd; in parse() local
733 if (spanEnd < spellCheckStart || spellCheckEnd < spanStart) { in parse()
737 if (spanStart <= spellCheckStart && spellCheckEnd <= spanEnd) { in parse()
749 spellCheckEnd = Math.max(spanEnd, spellCheckEnd); in parse()
754 + ", End = " + spellCheckEnd + ", Start = " + spellCheckStart in parse()
756 + editable.subSequence(spellCheckStart, spellCheckEnd)); in parse()
760 if (spellCheckEnd <= spellCheckStart) { in parse()
762 + sentenceStart + " to " + spellCheckEnd); in parse()
766 addSpellCheckSpan(editable, spellCheckStart, spellCheckEnd); in parse()
769 sentenceStart = spellCheckEnd; in parse()