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

  /external/webkit/Source/WebKit/chromium/src/
ContextMenuClientImpl.cpp 106 String misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace();
109 if (!misspelledWord.isEmpty()) {
111 if (!isASingleWord(misspelledWord))
113 return misspelledWord;
124 return misspelledWord; // It is empty.
127 misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace();
132 if (misspelledWord.isEmpty())
138 return misspelledWord;
261 data.misspelledWord = selectMisspelledWord(defaultMenu, selectedFrame);
265 data.misspelledWord, misspelledOffset, misspelledLength
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebContextMenuData.h 112 WebString misspelledWord;
114 // If misspelledWord is not empty, holds suggestions from the dictionary.
  /external/webkit/Source/WebCore/editing/
TextCheckingHelper.cpp 229 String misspelledWord;
285 misspelledWord = paragraphString.substring(result->location, result->length);
286 ASSERT(misspelledWord.length());
313 if (!misspelledWord.isEmpty() && (!checkGrammar || badGrammarPhrase.isEmpty() || spellingLocation <= grammarDetailLocation)) {
321 firstFoundItem = misspelledWord;
533 String misspelledWord = paragraph.checkingSubstring();
534 ASSERT(misspelledWord.length());
535 m_client->textChecker()->getGuessesForWord(misspelledWord, String(), guesses);
536 m_client->updateSpellingUIWithMisspelledWord(misspelledWord);
Editor.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp     [all...]

Completed in 196 milliseconds