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

/frameworks/base/core/java/android/widget/
H A DSpellChecker.java77 // Paired arrays for the (id, spellCheckSpan) pair. A negative id means the associated
196 SpellCheckSpan spellCheckSpan = mSpellCheckSpans[index];
197 editable.setSpan(spellCheckSpan, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
198 spellCheckSpan.setSpellCheckInProgress(false);
202 public void onSpellCheckSpanRemoved(SpellCheckSpan spellCheckSpan) { argument
205 if (mSpellCheckSpans[i] == spellCheckSpan) {
271 final SpellCheckSpan spellCheckSpan = mSpellCheckSpans[i];
272 if (mIds[i] < 0 || spellCheckSpan.isSpellCheckInProgress()) continue;
274 final int start = editable.getSpanStart(spellCheckSpan);
275 final int end = editable.getSpanEnd(spellCheckSpan);
453 createMisspelledSuggestionSpan(Editable editable, SuggestionsInfo suggestionsInfo, SpellCheckSpan spellCheckSpan, int offset, int length) argument
[all...]

Completed in 56 milliseconds