Searched refs:misspelledWord (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextCheckerClient.h45 virtual String getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
H A DSpellCheckerClientImpl.cpp158 String SpellCheckerClientImpl::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) argument
165 for (size_t i = 1; i < misspelledWord.length(); i++) {
166 if (u_isupper(static_cast<UChar32>(misspelledWord[i])))
171 return m_webView->spellCheckClient()->autoCorrectWord(WebString(misspelledWord));
210 void SpellCheckerClientImpl::updateSpellingUIWithMisspelledWord(const String& misspelledWord) argument
213 m_webView->spellCheckClient()->updateSpellingUIWithMisspelledWord(WebString(misspelledWord));
H A DContextMenuClientImpl.cpp114 String misspelledWord = selectedFrame->selectedText().stripWhiteSpace(); local
117 if (!misspelledWord.isEmpty()) {
119 if (!isASingleWord(misspelledWord))
121 return misspelledWord;
132 return misspelledWord; // It is empty.
135 misspelledWord = selectedFrame->selectedText().stripWhiteSpace();
140 if (misspelledWord.isEmpty())
146 return misspelledWord;
314 data.misspelledWord = selectMisspellingAsync(selectedFrame, marker);
322 m_webView->spellCheckClient()->spellCheck(data.misspelledWord, misspelledOffse
[all...]
/external/chromium_org/third_party/WebKit/public/web/
H A DWebSpellCheckClient.h72 virtual WebString autoCorrectWord(const WebString& misspelledWord) { return WebString(); } argument
H A DWebContextMenuData.h121 WebString misspelledWord; member in struct:blink::WebContextMenuData
126 // If misspelledWord is not empty, holds suggestions from the dictionary.
/external/chromium/webkit/glue/
H A Dcontext_menu.cc35 misspelled_word(data.misspelledWord),
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSpellChecker.cpp218 String misspelledWord; local
228 misspelledWord = foundItem;
235 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
237 if (!misspelledWord.isEmpty()) {
250 if (startedWithSelection && !misspelledWord && !badGrammarPhrase) {
259 misspelledWord = foundItem;
266 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchRange).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
268 if (!misspelledWord.isEmpty()) {
294 } else if (!misspelledWord.isEmpty()) {
298 RefPtr<Range> misspellingRange = TextIterator::subrange(spellingSearchRange.get(), misspellingOffset, misspelledWord
396 const String misspelledWord = plainText(misspellingRange.get()); local
[all...]
H A DTextCheckingHelper.cpp295 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;
/external/chromium_org/content/renderer/
H A Dcontext_menu_params_builder.cc33 params.misspelled_word = data.misspelledWord;
/external/chromium_org/third_party/WebKit/Source/testing/runner/
H A DEventSender.cpp874 MockSpellCheck::fillSuggestionList(contextMenu->misspelledWord, &suggestions);

Completed in 473 milliseconds