Home
last modified time | relevance | path

Searched refs:spell_check_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/content/shell/renderer/test_runner/
Dspell_check_client.cc54 spell_check_.SpellCheckWord(text, &misspelled_offset, &misspelled_length); in spellCheck()
68 spell_check_.SpellCheckWord( in checkTextOfParagraph()
101 if (spell_check_.HasInCache(text)) in requestCheckingOfText()
114 if (!spell_check_.IsMultiWordMisspelling(blink::WebString(text), &results)) { in FinishLastTextCheck()
118 spell_check_.SpellCheckWord( in FinishLastTextCheck()
123 spell_check_.FillSuggestionList( in FinishLastTextCheck()
Dspell_check_client.h26 MockSpellCheck* MockSpellCheckWord() { return &spell_check_; } in MockSpellCheckWord()
49 MockSpellCheck spell_check_; variable
/external/chromium_org/chrome/renderer/spellchecker/
Dspellcheck_unittest.cc41 spell_check_.reset(new SpellCheck()); in ReinitializeSpellCheck()
46 spell_check_.reset(new SpellCheck()); in UninitializeSpellCheck()
63 spell_check_->spellcheck_.platform_spelling_engine_.reset( in InitializeSpellCheck()
66 spell_check_->Init(file.Pass(), std::set<std::string>(), language); in InitializeSpellCheck()
70 spell_check_->OnEnableAutoSpellCorrect(enable_autocorrect); in EnableAutoCorrect()
76 SpellCheck* spell_check() { return spell_check_.get(); } in spell_check()
79 return spell_check_->spellcheck_.platform_spelling_engine_->CheckSpelling( in CheckSpelling()
103 scoped_ptr<SpellCheck> spell_check_; member in SpellCheckTest