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

  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 116 String misspelledWord = selectedFrame->selectedText().stripWhiteSpace();
119 if (!misspelledWord.isEmpty()) {
121 if (!isASingleWord(misspelledWord))
123 return misspelledWord;
134 return misspelledWord; // It is empty.
137 misspelledWord = selectedFrame->selectedText().stripWhiteSpace();
142 if (misspelledWord.isEmpty())
148 return misspelledWord;
323 data.misspelledWord = selectMisspellingAsync(selectedFrame, marker);
331 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/
SpellChecker.cpp 220 String misspelledWord;
230 misspelledWord = foundItem;
237 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
239 if (!misspelledWord.isEmpty()) {
252 if (startedWithSelection && !misspelledWord && !badGrammarPhrase) {
261 misspelledWord = foundItem;
268 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
270 if (!misspelledWord.isEmpty()) {
296 } else if (!misspelledWord.isEmpty()) {
300 RefPtrWillBeRawPtr<Range> misspellingRange = TextIterator::subrange(spellingSearchRange.get(), misspellingOffset, misspelledWord.length())
    [all...]

Completed in 441 milliseconds