Searched refs:StringIsSupported (Results 1 – 3 of 3) sorted by relevance
42 TEST_F(InputMethodUtilTest, StringIsSupported) { in TEST_F() argument43 EXPECT_TRUE(StringIsSupported("Hiragana", "mozc")); in TEST_F()44 EXPECT_TRUE(StringIsSupported("Latin", "mozc")); in TEST_F()45 EXPECT_TRUE(StringIsSupported("Direct input", "mozc")); in TEST_F()46 EXPECT_FALSE(StringIsSupported( in TEST_F()48 EXPECT_TRUE(StringIsSupported("Chinese", "pinyin")); in TEST_F()49 EXPECT_TRUE(StringIsSupported("Chinese", "mozc-chewing")); in TEST_F()51 EXPECT_FALSE(StringIsSupported("Chinese", "hangul")); in TEST_F()
48 bool StringIsSupported(const std::string& english_string,
395 bool StringIsSupported(const std::string& english_string, in StringIsSupported() function