Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DSpellChecker.java198 SpellCheckSpan spellCheckSpan = mSpellCheckSpans[index]; in addSpellCheckSpan() local
199 editable.setSpan(spellCheckSpan, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); in addSpellCheckSpan()
200 spellCheckSpan.setSpellCheckInProgress(false); in addSpellCheckSpan()
204 public void onSpellCheckSpanRemoved(SpellCheckSpan spellCheckSpan) { in onSpellCheckSpanRemoved() argument
207 if (mSpellCheckSpans[i] == spellCheckSpan) { in onSpellCheckSpanRemoved()
274 final SpellCheckSpan spellCheckSpan = mSpellCheckSpans[i]; in spellCheck() local
275 if (mIds[i] < 0 || spellCheckSpan.isSpellCheckInProgress()) continue; in spellCheck()
277 final int start = editable.getSpanStart(spellCheckSpan); in spellCheck()
278 final int end = editable.getSpanEnd(spellCheckSpan); in spellCheck()
298 spellCheckSpan.setSpellCheckInProgress(true); in spellCheck()
[all …]