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

  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 113 String misspelledWord = selectedFrame->selectedText().stripWhiteSpace();
116 if (!misspelledWord.isEmpty()) {
118 if (!isASingleWord(misspelledWord))
120 return misspelledWord;
131 return misspelledWord; // It is empty.
134 misspelledWord = selectedFrame->selectedText().stripWhiteSpace();
139 if (misspelledWord.isEmpty())
145 return misspelledWord;
309 data.misspelledWord = selectMisspellingAsync(selectedFrame, marker);
317 m_webView->spellCheckClient()->spellCheck(data.misspelledWord, misspelledOffset, misspelledLength, &data.dictionarySuggestions)
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebContextMenuData.h 121 WebString misspelledWord;
126 // If misspelledWord is not empty, holds suggestions from the dictionary.
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextCheckingHelper.cpp 295 String misspelledWord;
350 misspelledWord = paragraphString.substring(result->location, result->length);
351 ASSERT(misspelledWord.length());
378 if (!misspelledWord.isEmpty() && (!checkGrammar || badGrammarPhrase.isEmpty() || spellingLocation <= grammarDetailLocation)) {
386 firstFoundItem = misspelledWord;
Editor.cpp     [all...]

Completed in 107 milliseconds