Home
last modified time | relevance | path

Searched refs:HasWord (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/chrome/browser/spellchecker/
Dspellcheck_custom_dictionary.h94 bool HasWord(const std::string& word) const;
Dspellcheck_custom_dictionary_unittest.cc1132 TEST_F(SpellcheckCustomDictionaryTest, HasWord) { in TEST_F() argument
1138 EXPECT_FALSE(custom_dictionary->HasWord("foo")); in TEST_F()
1139 EXPECT_FALSE(custom_dictionary->HasWord("bar")); in TEST_F()
1141 EXPECT_TRUE(custom_dictionary->HasWord("foo")); in TEST_F()
1142 EXPECT_FALSE(custom_dictionary->HasWord("bar")); in TEST_F()
Dspellcheck_message_filter.cc151 if (spellcheck->GetCustomDictionary()->HasWord( in OnTextCheckComplete()
Dspellcheck_custom_dictionary.cc259 bool SpellcheckCustomDictionary::HasWord(const std::string& word) const { in HasWord() function in SpellcheckCustomDictionary