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

  /external/webkit/Source/WebKit/chromium/public/
WebSpellCheckClient.h 60 virtual WebString autoCorrectWord(const WebString& misspelledWord) { return WebString(); }
WebContextMenuData.h 112 WebString misspelledWord;
114 // If misspelledWord is not empty, holds suggestions from the dictionary.
  /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...]
EditorClientImpl.cpp 881 String EditorClientImpl::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord)
    [all...]
  /external/webkit/Source/WebCore/platform/text/
TextCheckerClient.h 63 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) = 0;
  /external/webkit/Source/WebKit2/UIProcess/win/
WebTextCheckerClient.h 52 void updateSpellingUIWithMisspelledWord(uint64_t tag, const String& misspelledWord);
TextCheckerWin.cpp 115 void TextChecker::updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord)
117 WebTextChecker::shared()->client().updateSpellingUIWithMisspelledWord(spellDocumentTag, misspelledWord);
WebTextCheckerClient.cpp 132 void WebTextCheckerClient::updateSpellingUIWithMisspelledWord(uint64_t tag, const String& misspelledWord)
137 m_client.updateSpellingUIWithMisspelledWord(tag, toAPI(misspelledWord.impl()), m_client.clientInfo);
  /external/chromium/webkit/glue/
context_menu.cc 35 misspelled_word(data.misspelledWord),
  /external/webkit/Source/WebKit2/UIProcess/
TextChecker.h 71 static void updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord);
WebPageProxy.h 654 void updateSpellingUIWithMisspelledWord(const String& misspelledWord);
    [all...]
WebPageProxy.cpp     [all...]
  /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/WebKit/efl/WebCoreSupport/
EditorClientEfl.h 108 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
EditorClientHaiku.h 104 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
EditorClientHaiku.cpp 436 String EditorClientHaiku::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord)
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
EditorClientQt.h 103 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
  /external/webkit/Source/WebKit2/UIProcess/API/C/win/
WKTextChecker.h 47 typedef void (*WKTextCheckerUpdateSpellingUIWithMisspelledWord)(uint64_t tag, WKStringRef misspelledWord, const void *clientInfo);
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebEditorClient.h 136 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
WebEditorClient.cpp 421 void WebEditorClient::updateSpellingUIWithMisspelledWord(const String& misspelledWord)
423 m_page->send(Messages::WebPageProxy::UpdateSpellingUIWithMisspelledWord(misspelledWord));
  /external/webkit/Source/WebKit2/UIProcess/mac/
TextCheckerMac.mm 343 void TextChecker::updateSpellingUIWithMisspelledWord(int64_t, const String& misspelledWord)
345 [[NSSpellChecker sharedSpellChecker] updateSpellingPanelWithMisspelledWord:misspelledWord];
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebEditorClient.mm     [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 758 spellcheck->fillSuggestionList(contextMenu->misspelledWord, &suggestions);
    [all...]

Completed in 415 milliseconds