Searched refs:IsAsciiDigit (Results 1 – 3 of 3) sorted by relevance
486 EXPECT_FALSE(IsAsciiDigit('\0')); in TEST()487 EXPECT_FALSE(IsAsciiDigit(' ')); in TEST()488 EXPECT_FALSE(IsAsciiDigit('+')); in TEST()489 EXPECT_FALSE(IsAsciiDigit('-')); in TEST()490 EXPECT_FALSE(IsAsciiDigit('.')); in TEST()491 EXPECT_FALSE(IsAsciiDigit('a')); in TEST()495 EXPECT_TRUE(IsAsciiDigit('0')); in TEST()496 EXPECT_TRUE(IsAsciiDigit('1')); in TEST()497 EXPECT_TRUE(IsAsciiDigit('5')); in TEST()498 EXPECT_TRUE(IsAsciiDigit('9')); in TEST()
210 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function231 case 'd': return IsAsciiDigit(ch); in AtomMatchesChar()232 case 'D': return !IsAsciiDigit(ch); in AtomMatchesChar()
939 GTEST_API_ bool IsAsciiDigit(char ch);