Home | History | Annotate | Download | only in textservice

Lines Matching refs:wordEnd

378             int wordEnd = wordIterator.following(start);
379 int wordStart = wordIterator.getBeginning(wordEnd);
382 + wordEnd + "\n" + originalText);
384 while (wordStart <= end && wordEnd != BreakIterator.DONE
386 if (wordEnd >= start && wordEnd > wordStart) {
387 final String query = originalText.subSequence(wordStart, wordEnd).toString();
389 wordItems.add(new SentenceWordItem(ti, wordStart, wordEnd));
394 wordEnd = wordIterator.following(wordEnd);
395 if (wordEnd == BreakIterator.DONE) {
398 wordStart = wordIterator.getBeginning(wordEnd);