/external/webkit/Source/WebKit/chromium/src/ |
D | ContextMenuClientImpl.cpp | 106 String misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace(); in selectMisspelledWord() local 109 if (!misspelledWord.isEmpty()) { in selectMisspelledWord() 111 if (!isASingleWord(misspelledWord)) in selectMisspelledWord() 113 return misspelledWord; in selectMisspelledWord() 124 return misspelledWord; // It is empty. in selectMisspelledWord() 127 misspelledWord = selectedFrame->editor()->selectedText().stripWhiteSpace(); in selectMisspelledWord() 132 if (misspelledWord.isEmpty()) in selectMisspelledWord() 138 return misspelledWord; in selectMisspelledWord() 261 data.misspelledWord = selectMisspelledWord(defaultMenu, selectedFrame); in getCustomMenuFromDefaultItems() 265 data.misspelledWord, misspelledOffset, misspelledLength, in getCustomMenuFromDefaultItems() [all …]
|
D | EditorClientImpl.cpp | 881 String EditorClientImpl::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) in getAutoCorrectSuggestionForMisspelledWord() argument 888 for (size_t i = 1; i < misspelledWord.length(); i++) { in getAutoCorrectSuggestionForMisspelledWord() 889 if (u_isupper(static_cast<UChar32>(misspelledWord[i]))) in getAutoCorrectSuggestionForMisspelledWord() 894 return m_webView->spellCheckClient()->autoCorrectWord(WebString(misspelledWord)); in getAutoCorrectSuggestionForMisspelledWord() 916 void EditorClientImpl::updateSpellingUIWithMisspelledWord(const String& misspelledWord) in updateSpellingUIWithMisspelledWord() argument 919 … m_webView->spellCheckClient()->updateSpellingUIWithMisspelledWord(WebString(misspelledWord)); in updateSpellingUIWithMisspelledWord()
|
/external/webkit/Source/WebCore/editing/ |
D | TextCheckingHelper.cpp | 229 String misspelledWord; in findFirstMisspellingOrBadGrammar() local 285 … misspelledWord = paragraphString.substring(result->location, result->length); in findFirstMisspellingOrBadGrammar() 286 ASSERT(misspelledWord.length()); in findFirstMisspellingOrBadGrammar() 313 …if (!misspelledWord.isEmpty() && (!checkGrammar || badGrammarPhrase.isEmpty() || spellingLocation … in findFirstMisspellingOrBadGrammar() 321 firstFoundItem = misspelledWord; in findFirstMisspellingOrBadGrammar() 533 String misspelledWord = paragraph.checkingSubstring(); in guessesForMisspelledOrUngrammaticalRange() local 534 ASSERT(misspelledWord.length()); in guessesForMisspelledOrUngrammaticalRange() 535 m_client->textChecker()->getGuessesForWord(misspelledWord, String(), guesses); in guessesForMisspelledOrUngrammaticalRange() 536 m_client->updateSpellingUIWithMisspelledWord(misspelledWord); in guessesForMisspelledOrUngrammaticalRange()
|
D | Editor.cpp | 1746 String misspelledWord; in advanceToNextMisspelling() local 1754 misspelledWord = foundItem; in advanceToNextMisspelling() 1762 …misspelledWord = TextCheckingHelper(client(), spellingSearchRange).findFirstMisspelling(misspellin… in advanceToNextMisspelling() 1767 if (!misspelledWord.isEmpty()) { in advanceToNextMisspelling() 1781 if (startedWithSelection && !misspelledWord && !badGrammarPhrase) { in advanceToNextMisspelling() 1790 misspelledWord = foundItem; in advanceToNextMisspelling() 1797 …misspelledWord = TextCheckingHelper(client(), spellingSearchRange).findFirstMisspelling(misspellin… in advanceToNextMisspelling() 1801 if (!misspelledWord.isEmpty()) { in advanceToNextMisspelling() 1830 } else if (!misspelledWord.isEmpty()) { in advanceToNextMisspelling() 1834 …ge = TextIterator::subrange(spellingSearchRange.get(), misspellingOffset, misspelledWord.length()); in advanceToNextMisspelling() [all …]
|
/external/webkit/Source/WebKit2/UIProcess/win/ |
D | TextCheckerWin.cpp | 115 …Checker::updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord) in updateSpellingUIWithMisspelledWord() argument 117 …xtChecker::shared()->client().updateSpellingUIWithMisspelledWord(spellDocumentTag, misspelledWord); in updateSpellingUIWithMisspelledWord()
|
D | WebTextCheckerClient.cpp | 132 …ebTextCheckerClient::updateSpellingUIWithMisspelledWord(uint64_t tag, const String& misspelledWord) in updateSpellingUIWithMisspelledWord() argument 137 …m_client.updateSpellingUIWithMisspelledWord(tag, toAPI(misspelledWord.impl()), m_client.clientInfo… in updateSpellingUIWithMisspelledWord()
|
D | WebTextCheckerClient.h | 52 void updateSpellingUIWithMisspelledWord(uint64_t tag, const String& misspelledWord);
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebSpellCheckClient.h | 60 virtual WebString autoCorrectWord(const WebString& misspelledWord) { return WebString(); } in autoCorrectWord() argument
|
D | WebContextMenuData.h | 112 WebString misspelledWord; member
|
/external/webkit/Source/WebCore/platform/text/ |
D | TextCheckerClient.h | 63 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) = 0;
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | TextChecker.h | 71 …ic void updateSpellingUIWithMisspelledWord(int64_t spellDocumentTag, const String& misspelledWord);
|
D | WebPageProxy.messages.in | 188 UpdateSpellingUIWithMisspelledWord(WTF::String misspelledWord)
|
D | WebPageProxy.h | 654 void updateSpellingUIWithMisspelledWord(const String& misspelledWord);
|
D | WebPageProxy.cpp | 2480 void WebPageProxy::updateSpellingUIWithMisspelledWord(const String& misspelledWord) in updateSpellingUIWithMisspelledWord() argument 2482 TextChecker::updateSpellingUIWithMisspelledWord(spellDocumentTag(), misspelledWord); in updateSpellingUIWithMisspelledWord()
|
/external/chromium/webkit/glue/ |
D | context_menu.cc | 35 misspelled_word(data.misspelledWord), in ContextMenuParams()
|
/external/webkit/Source/WebKit2/UIProcess/API/C/win/ |
D | WKTextChecker.h | 47 …CheckerUpdateSpellingUIWithMisspelledWord)(uint64_t tag, WKStringRef misspelledWord, const void *c…
|
/external/webkit/Source/WebKit/haiku/WebCoreSupport/ |
D | EditorClientHaiku.h | 104 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
|
D | EditorClientHaiku.cpp | 436 String EditorClientHaiku::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) in getAutoCorrectSuggestionForMisspelledWord() argument
|
/external/webkit/Source/WebKit/efl/WebCoreSupport/ |
D | EditorClientEfl.h | 108 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
D | EditorClientQt.h | 103 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
D | WebEditorClient.cpp | 421 void WebEditorClient::updateSpellingUIWithMisspelledWord(const String& misspelledWord) in updateSpellingUIWithMisspelledWord() argument 423 m_page->send(Messages::WebPageProxy::UpdateSpellingUIWithMisspelledWord(misspelledWord)); in updateSpellingUIWithMisspelledWord()
|
D | WebEditorClient.h | 136 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord);
|
/external/webkit/Source/WebKit2/UIProcess/mac/ |
D | TextCheckerMac.mm | 343 void TextChecker::updateSpellingUIWithMisspelledWord(int64_t, const String& misspelledWord) 345 [[NSSpellChecker sharedSpellChecker] updateSpellingPanelWithMisspelledWord:misspelledWord];
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
D | WebEditorClient.mm | 910 void WebEditorClient::updateSpellingUIWithMisspelledWord(const String& misspelledWord) 912 [[NSSpellChecker sharedSpellChecker] updateSpellingPanelWithMisspelledWord:misspelledWord];
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | EventSender.cpp | 758 spellcheck->fillSuggestionList(contextMenu->misspelledWord, &suggestions); in makeMenuItemStringsFor()
|