Searched refs:IsAsciiDigit (Results 1 – 1 of 1) sorted by relevance
1342 GTEST_API_ bool IsAsciiDigit(char ch);10098 bool IsAsciiDigit(char ch) { return '0' <= ch && ch <= '9'; } in IsAsciiDigit() function10119 case 'd': return IsAsciiDigit(ch); in AtomMatchesChar()10120 case 'D': return !IsAsciiDigit(ch); in AtomMatchesChar()