Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/widget/
DSpellChecker.java199 SpellCheckSpan spellCheckSpan = mSpellCheckSpans[index]; in addSpellCheckSpan() local
200 editable.setSpan(spellCheckSpan, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); in addSpellCheckSpan()
201 spellCheckSpan.setSpellCheckInProgress(false); in addSpellCheckSpan()
205 public void onSpellCheckSpanRemoved(SpellCheckSpan spellCheckSpan) { in onSpellCheckSpanRemoved() argument
208 if (mSpellCheckSpans[i] == spellCheckSpan) { in onSpellCheckSpanRemoved()
303 final SpellCheckSpan spellCheckSpan = mSpellCheckSpans[i]; in spellCheck() local
304 if (mIds[i] < 0 || spellCheckSpan.isSpellCheckInProgress()) continue; in spellCheck()
306 final int start = editable.getSpanStart(spellCheckSpan); in spellCheck()
307 final int end = editable.getSpanEnd(spellCheckSpan); in spellCheck()
333 spellCheckSpan.setSpellCheckInProgress(true); in spellCheck()
[all …]