Home
last modified time | relevance | path

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

/external/libchrome/base/strings/
Dstring_util_unittest.cc1324 TEST(StringUtilTest, IsUnicodeWhitespace) { in TEST() argument
1326 EXPECT_FALSE(IsUnicodeWhitespace(L'\0')); in TEST()
1327 EXPECT_FALSE(IsUnicodeWhitespace(L'A')); in TEST()
1328 EXPECT_FALSE(IsUnicodeWhitespace(L'0')); in TEST()
1329 EXPECT_FALSE(IsUnicodeWhitespace(L'.')); in TEST()
1330 EXPECT_FALSE(IsUnicodeWhitespace(L';')); in TEST()
1331 EXPECT_FALSE(IsUnicodeWhitespace(L'\x4100')); in TEST()
1334 EXPECT_TRUE(IsUnicodeWhitespace(L' ')); in TEST()
1335 EXPECT_TRUE(IsUnicodeWhitespace(L'\xa0')); in TEST()
1336 EXPECT_TRUE(IsUnicodeWhitespace(L'\x3000')); in TEST()
[all …]
Dstring_util.h368 BASE_EXPORT bool IsUnicodeWhitespace(wchar_t c);
Dstring_util.cc423 if (IsUnicodeWhitespace(*i)) { in CollapseWhitespaceT()
655 bool IsUnicodeWhitespace(wchar_t c) { in IsUnicodeWhitespace() function