Home | History | Annotate | Download | only in widget

Lines Matching defs:wordStart

425             int wordStart = mWordIterator.preceding(start);
427 if (wordStart == BreakIterator.DONE) {
430 wordStart = mWordIterator.getBeginning(wordEnd);
433 wordEnd = mWordIterator.getEnd(wordStart);
450 while (wordStart <= end) {
451 if (wordEnd >= start && wordEnd > wordStart) {
459 if (wordStart < start && wordEnd > start) {
464 if (wordStart < end && wordEnd > end) {
481 if (wordStart == end) {
492 addSpellCheckSpan(editable, wordStart, wordEnd);
507 wordStart = mWordIterator.getBeginning(wordEnd);
508 if (wordStart == BreakIterator.DONE) {
514 editable.setSpan(mRange, wordStart, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);