Searched refs:IsAsciiPunct (Results 1 – 3 of 3) sorted by relevance
502 EXPECT_FALSE(IsAsciiPunct('\0')); in TEST()503 EXPECT_FALSE(IsAsciiPunct(' ')); in TEST()504 EXPECT_FALSE(IsAsciiPunct('\n')); in TEST()505 EXPECT_FALSE(IsAsciiPunct('a')); in TEST()506 EXPECT_FALSE(IsAsciiPunct('0')); in TEST()511 EXPECT_PRED1(IsAsciiPunct, *p); in TEST()
211 bool IsAsciiPunct(char ch) { in IsAsciiPunct() function223 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW")); in IsValidEscape()243 return IsAsciiPunct(pattern_char) && pattern_char == ch; in AtomMatchesChar()
940 GTEST_API_ bool IsAsciiPunct(char ch);