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

  /external/webkit/Tools/DumpRenderTree/win/
EditingDelegate.cpp 411 int wordStart = indexOfFirstWordCharacter(textString.c_str());
412 if (-1 == wordStart)
414 wstring word = textString.substr(wordStart, wordLength(textString.c_str() + wordStart));
417 *misspellingLocation = wordStart;
  /frameworks/base/core/java/android/widget/
SpellChecker.java 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)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp 748 const char *wordStart = dateString;
752 if (dateString - wordStart >= 3)
753 month = findMonth(wordStart);
755 wordStart = dateString;
761 if (month == -1 && wordStart != dateString)
762 month = findMonth(wordStart);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssist.java     [all...]

Completed in 101 milliseconds