Home
last modified time | relevance | path

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

/external/chromium/chrome/browser/chromeos/input_method/
Dinput_method_util_unittest.cc42 TEST_F(InputMethodUtilTest, StringIsSupported) { in TEST_F() argument
43 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()
Dinput_method_util.h48 bool StringIsSupported(const std::string& english_string,
Dinput_method_util.cc395 bool StringIsSupported(const std::string& english_string, in StringIsSupported() function