HomeSort by relevance Sort by last modified time
    Searched refs:wordOffset (Results 1 - 3 of 3) sorted by null

  /external/webkit/Tools/DumpRenderTree/chromium/
MockSpellCheck.cpp 74 int wordOffset = stringText.find(isASCIIAlpha);
75 if (wordOffset == -1)
77 int wordEnd = stringText.find(isNotASCIIAlpha, wordOffset);
78 int wordLength = wordEnd == -1 ? stringText.length() - wordOffset : wordEnd - wordOffset;
85 WTF::String word = stringText.substring(wordOffset, wordLength);
89 *misspelledOffset = wordOffset;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 44 * @param wordOffset starting offset of the word in the character array
52 boolean addWord(char[] word, int wordOffset, int wordLength, int score, int dicTypeId,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 249 synchronized public boolean addWord(char[] word, int wordOffset, int wordLength, int score,
268 // mBestSuggestion = new String(word, wordOffset, wordLength);
281 final String wordString = new String(word, wordOffset, wordLength);
    [all...]

Completed in 53 milliseconds