Searched defs:IsDigit (Results 1 – 9 of 9) sorted by relevance
183 bool IsDigit<10>(char ch) { in IsDigit() function187 bool IsDigit<16>(char ch) { in IsDigit() function
85 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function
459 static bool IsDigit(const char d) { in IsDigit() function
444 static bool IsDigit(const char d) { in IsDigit() function
383 static bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function
50 #define IsDigit(c) ((c) >= '0' && (c) <= '9') macro
233 #define IsDigit(X) isdigit((unsigned char)X) macro