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

  /external/webkit/WebKit/chromium/src/
ContextMenuClientImpl.cpp 98 String misspelledWord = selectedFrame->selectedText().stripWhiteSpace();
101 if (!misspelledWord.isEmpty()) {
103 if (!isASingleWord(misspelledWord))
105 return misspelledWord;
116 return misspelledWord; // It is empty.
119 misspelledWord = selectedFrame->selectedText().stripWhiteSpace();
124 if (misspelledWord.isEmpty())
130 return misspelledWord;
202 data.misspelledWord = selectMisspelledWord(defaultMenu, selectedFrame);
EditorClientImpl.cpp 858 String EditorClientImpl::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord)
865 for (size_t i = 1; i < misspelledWord.length(); i++) {
866 if (u_isupper(static_cast<UChar32>(misspelledWord[i])))
870 return m_webView->client()->autoCorrectWord(WebString(misspelledWord));
891 void EditorClientImpl::updateSpellingUIWithMisspelledWord(const String& misspelledWord)
    [all...]
  /external/webkit/WebKit/chromium/public/
WebContextMenuData.h 95 WebString misspelledWord;
WebViewClient.h 152 virtual WebString autoCorrectWord(const WebString& misspelledWord) { return WebString(); }
  /external/webkit/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 103 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
EditorClientHaiku.cpp 431 String EditorClientHaiku::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord)
  /external/webkit/WebKit/qt/WebCoreSupport/
EditorClientQt.h 101 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
  /external/webkit/WebCore/page/
EditorClient.h 169 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) = 0;
  /external/webkit/WebCore/editing/
Editor.cpp     [all...]
  /external/webkit/WebKit/mac/WebCoreSupport/
WebEditorClient.mm 787 void WebEditorClient::updateSpellingUIWithMisspelledWord(const String& misspelledWord)
789 [[NSSpellChecker sharedSpellChecker] updateSpellingPanelWithMisspelledWord:misspelledWord];

Completed in 62 milliseconds