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

  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
TextCheckerClient.h 45 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) = 0;
  /external/chromium_org/third_party/WebKit/public/web/
WebSpellCheckClient.h 72 virtual WebString autoCorrectWord(const WebString& misspelledWord) { return WebString(); }
WebContextMenuData.h 121 WebString misspelledWord;
126 // If misspelledWord is not empty, holds suggestions from the dictionary.
  /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...]
EditorClientImpl.cpp 687 String EditorClientImpl::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord)
694 for (size_t i = 1; i < misspelledWord.length(); i++) {
695 if (u_isupper(static_cast<UChar32>(misspelledWord[i])))
700 return m_webView->spellCheckClient()->autoCorrectWord(WebString(misspelledWord));
739 void EditorClientImpl::updateSpellingUIWithMisspelledWord(const String& misspelledWord)
742 m_webView->spellCheckClient()->updateSpellingUIWithMisspelledWord(WebString(misspelledWord));
  /external/chromium/webkit/glue/
context_menu.cc 35 misspelled_word(data.misspelledWord),
  /external/chromium_org/content/renderer/
context_menu_params_builder.cc 33 params.misspelled_word = data.misspelledWord;
  /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...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp 857 MockSpellCheck::fillSuggestionList(contextMenu->misspelledWord, &suggestions);
    [all...]

Completed in 184 milliseconds