Searched refs:IsUnicodeWhitespace (Results 1 – 3 of 3) sorted by relevance
1324 TEST(StringUtilTest, IsUnicodeWhitespace) { in TEST() argument1326 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 …]
368 BASE_EXPORT bool IsUnicodeWhitespace(wchar_t c);
423 if (IsUnicodeWhitespace(*i)) { in CollapseWhitespaceT()655 bool IsUnicodeWhitespace(wchar_t c) { in IsUnicodeWhitespace() function