Searched refs:IsAsciiDigit (Results 1 – 3 of 3) sorted by relevance
475 EXPECT_FALSE(IsAsciiDigit('\0')); in TEST()476 EXPECT_FALSE(IsAsciiDigit(' ')); in TEST()477 EXPECT_FALSE(IsAsciiDigit('+')); in TEST()478 EXPECT_FALSE(IsAsciiDigit('-')); in TEST()479 EXPECT_FALSE(IsAsciiDigit('.')); in TEST()480 EXPECT_FALSE(IsAsciiDigit('a')); in TEST()484 EXPECT_TRUE(IsAsciiDigit('0')); in TEST()485 EXPECT_TRUE(IsAsciiDigit('1')); in TEST()486 EXPECT_TRUE(IsAsciiDigit('5')); in TEST()487 EXPECT_TRUE(IsAsciiDigit('9')); in TEST()
761 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function782 case 'd': return IsAsciiDigit(ch); in AtomMatchesChar()783 case 'D': return !IsAsciiDigit(ch); in AtomMatchesChar()
964 GTEST_API_ bool IsAsciiDigit(char ch);