Searched refs:IsUnicodeWhitespace (Results 1 – 8 of 8) 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 …]
423 if (IsUnicodeWhitespace(*i)) { in CollapseWhitespaceT()655 bool IsUnicodeWhitespace(wchar_t c) { in IsUnicodeWhitespace() function
368 BASE_EXPORT bool IsUnicodeWhitespace(wchar_t c);
1545 TEST(StringUtilTest, IsUnicodeWhitespace) { in TEST() argument1547 EXPECT_FALSE(IsUnicodeWhitespace(L'\0')); in TEST()1548 EXPECT_FALSE(IsUnicodeWhitespace(L'A')); in TEST()1549 EXPECT_FALSE(IsUnicodeWhitespace(L'0')); in TEST()1550 EXPECT_FALSE(IsUnicodeWhitespace(L'.')); in TEST()1551 EXPECT_FALSE(IsUnicodeWhitespace(L';')); in TEST()1552 EXPECT_FALSE(IsUnicodeWhitespace(L'\x4100')); in TEST()1555 EXPECT_TRUE(IsUnicodeWhitespace(L' ')); in TEST()1556 EXPECT_TRUE(IsUnicodeWhitespace(L'\xa0')); in TEST()1557 EXPECT_TRUE(IsUnicodeWhitespace(L'\x3000')); in TEST()[all …]
472 inline bool IsUnicodeWhitespace(Char c) { in IsUnicodeWhitespace() function488 return IsUnicodeWhitespace(c); in IsWhitespace()
117 static bool IsUnicodeWhitespace(char c) { in IsUnicodeWhitespace() function133 if (IsUnicodeWhitespace(*i)) { in CollapseWhitespaceASCII()
371 BASE_EXPORT bool IsUnicodeWhitespace(wchar_t c);