Searched defs:misspelledWord (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/public/web/
H A DWebSpellCheckClient.h72 virtual WebString autoCorrectWord(const WebString& misspelledWord) { return WebString(); } argument
H A DWebContextMenuData.h124 WebString misspelledWord; member in struct:blink::WebContextMenuData
129 // If misspelledWord is not empty, holds suggestions from the dictionary.
/external/chromium_org/third_party/WebKit/Source/web/
H A DSpellCheckerClientImpl.cpp162 String SpellCheckerClientImpl::getAutoCorrectSuggestionForMisspelledWord(const String& misspelledWord) argument
169 for (size_t i = 1; i < misspelledWord.length(); i++) {
170 if (u_isupper(static_cast<UChar32>(misspelledWord[i])))
175 return m_webView->spellCheckClient()->autoCorrectWord(WebString(misspelledWord));
214 void SpellCheckerClientImpl::updateSpellingUIWithMisspelledWord(const String& misspelledWord) argument
217 m_webView->spellCheckClient()->updateSpellingUIWithMisspelledWord(WebString(misspelledWord));
H A DContextMenuClientImpl.cpp116 String misspelledWord = selectedFrame->selectedText().stripWhiteSpace(); local
119 if (!misspelledWord.isEmpty()) {
121 if (!isASingleWord(misspelledWord))
123 return misspelledWord;
134 return misspelledWord; // It is empty.
137 misspelledWord = selectedFrame->selectedText().stripWhiteSpace();
142 if (misspelledWord.isEmpty())
148 return misspelledWord;
329 data.misspelledWord = selectMisspellingAsync(selectedFrame, description, hash);
337 m_webView->spellCheckClient()->spellCheck(data.misspelledWord, misspelledOffse
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSpellChecker.cpp231 String misspelledWord; local
242 misspelledWord = foundItem;
249 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchStart, spellingSearchEnd).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
252 if (!misspelledWord.isEmpty()) {
265 if (startedWithSelection && !misspelledWord && !badGrammarPhrase) {
275 misspelledWord = foundItem;
282 misspelledWord = TextCheckingHelper(spellCheckerClient(), spellingSearchStart, spellingSearchEnd).findFirstMisspelling(misspellingOffset, false, firstMisspellingRange);
285 if (!misspelledWord.isEmpty()) {
313 } else if (!misspelledWord.isEmpty()) {
319 TextIterator::subrange(misspellingStart, misspellingEnd, misspellingOffset, misspelledWord
411 const String misspelledWord = plainText(misspellingRange.get()); local
[all...]

Completed in 219 milliseconds