Searched refs:IsAsciiPunct (Results 1 – 3 of 3) sorted by relevance
491 EXPECT_FALSE(IsAsciiPunct('\0')); in TEST()492 EXPECT_FALSE(IsAsciiPunct(' ')); in TEST()493 EXPECT_FALSE(IsAsciiPunct('\n')); in TEST()494 EXPECT_FALSE(IsAsciiPunct('a')); in TEST()495 EXPECT_FALSE(IsAsciiPunct('0')); in TEST()500 EXPECT_PRED1(IsAsciiPunct, *p); in TEST()
762 bool IsAsciiPunct(char ch) { in IsAsciiPunct() function774 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape()794 return IsAsciiPunct(pattern_char) && pattern_char == ch; in AtomMatchesChar()
965 GTEST_API_ bool IsAsciiPunct(char ch);