Searched refs:HasWord (Results 1 – 4 of 4) sorted by relevance
94 bool HasWord(const std::string& word) const;
1132 TEST_F(SpellcheckCustomDictionaryTest, HasWord) { in TEST_F() argument1138 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()
151 if (spellcheck->GetCustomDictionary()->HasWord( in OnTextCheckComplete()
259 bool SpellcheckCustomDictionary::HasWord(const std::string& word) const { in HasWord() function in SpellcheckCustomDictionary