HomeSort by relevance Sort by last modified time
    Searched defs:wordStart (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp 76 int wordStart = textBreakCurrent(iterator);
77 while (0 <= wordStart) {
81 int wordLength = wordEnd - wordStart;
84 client->checkSpellingOfString(String(text + start + wordStart, wordLength), &misspellingLocation, &misspellingLength);
90 misspelling.location = start + wordStart + misspellingLocation;
96 wordStart = wordEnd;
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 379 int wordStart = wordIterator.getBeginning(wordEnd);
381 Log.d(TAG, "iterator: break: ---- 1st word start = " + wordStart + ", end = "
384 while (wordStart <= end && wordEnd != BreakIterator.DONE
385 && wordStart != 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));
398 wordStart = wordIterator.getBeginning(wordEnd);
  /external/chromium_org/third_party/WebKit/Source/wtf/
DateMath.cpp 772 const char *wordStart = dateString;
776 if (dateString - wordStart >= 3)
777 month = findMonth(wordStart);
779 wordStart = dateString;
785 if (month == -1 && wordStart != dateString)
786 month = findMonth(wordStart);
    [all...]
  /frameworks/base/core/java/android/widget/
SpellChecker.java 566 int wordStart = mWordIterator.preceding(start);
568 if (wordStart == BreakIterator.DONE) {
571 wordStart = mWordIterator.getBeginning(wordEnd);
574 wordEnd = mWordIterator.getEnd(wordStart);
617 int spellCheckStart = wordStart;
666 wordStart = spellCheckEnd;
668 while (wordStart <= end) {
669 if (wordEnd >= start && wordEnd > wordStart) {
677 if (wordStart < start && wordEnd > start) {
682 if (wordStart < end && wordEnd > end)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java     [all...]

Completed in 187 milliseconds