Home
last modified time | relevance | path

Searched refs:misspelled_word (Results 1 – 11 of 11) sorted by relevance

/external/chromium_org/chrome/renderer/spellchecker/
Dspellcheck.cc261 char16 misspelled_word[ in GetAutoCorrectionWord() local
267 misspelled_word[i] = 0; in GetAutoCorrectionWord()
269 misspelled_word[i] = word_char[i]; in GetAutoCorrectionWord()
276 std::swap(misspelled_word[i], misspelled_word[i + 1]); in GetAutoCorrectionWord()
280 SpellCheckWord(misspelled_word, word_length, tag, &misspelling_start, in GetAutoCorrectionWord()
287 autocorrect_word.assign(misspelled_word); in GetAutoCorrectionWord()
295 std::swap(misspelled_word[i], misspelled_word[i + 1]); in GetAutoCorrectionWord()
Dspellcheck_provider.h88 const blink::WebString& misspelled_word) OVERRIDE;
Dspellcheck_unittest.cc844 base::string16 misspelled_word(UTF8ToUTF16(kTestCases[i].input)); in TEST_F() local
848 misspelled_word, 0); in TEST_F()
/external/chromium_org/chrome/browser/tab_contents/
Dspelling_menu_observer.cc56 DCHECK(!params.misspelled_word.empty() || in InitMenu()
66 if (params.misspelled_word.empty()) in InitMenu()
70 misspelled_word_ = params.misspelled_word; in InitMenu()
120 result_ = params.misspelled_word; in InitMenu()
134 profile, SpellingServiceClient::SUGGEST, params.misspelled_word, in InitMenu()
Dspelling_menu_observer_browsertest.cc228 params.misspelled_word = ASCIIToUTF16(word); in InitMenu()
/external/chromium/webkit/glue/
Dcontext_menu.h85 string16 misspelled_word; member
Dcontext_menu.cc35 misspelled_word(data.misspelledWord), in ContextMenuParams()
/external/chromium_org/content/public/common/
Dcontext_menu_params.h106 base::string16 misspelled_word; member
/external/chromium_org/content/renderer/
Dcontext_menu_params_builder.cc33 params.misspelled_word = data.misspelledWord; in Build()
/external/chromium/chrome/browser/tab_contents/
Drender_view_context_menu.cc734 if (!params_.misspelled_word.empty()) { in AppendEditableItems()
1034 return !params_.misspelled_word.empty(); in IsCommandIdEnabled()
1460 spellcheck_host->AddWord(UTF16ToUTF8(params_.misspelled_word)); in ExecuteCommand()
1461 SpellCheckerPlatform::AddWord(params_.misspelled_word); in ExecuteCommand()
/external/chromium_org/content/common/
Dview_messages.h190 IPC_STRUCT_TRAITS_MEMBER(misspelled_word)