Home | History | Annotate | Download | only in widget

Lines Matching defs:wordStart

563             int wordStart = mWordIterator.preceding(start);
565 if (wordStart == BreakIterator.DONE) {
568 wordStart = mWordIterator.getBeginning(wordEnd);
571 wordEnd = mWordIterator.getEnd(wordStart);
614 int spellCheckStart = wordStart;
663 wordStart = spellCheckEnd;
665 while (wordStart <= end) {
666 if (wordEnd >= start && wordEnd > wordStart) {
674 if (wordStart < start && wordEnd > start) {
679 if (wordStart < end && wordEnd > end) {
696 if (wordStart == end) {
707 addSpellCheckSpan(editable, wordStart, wordEnd);
724 wordStart = mWordIterator.getBeginning(wordEnd);
725 if (wordStart == BreakIterator.DONE) {
732 // Update range span: start new spell check from last wordStart
733 setRangeSpan(editable, wordStart, end);