Searched defs:IsDigit (Results 1 – 11 of 11) 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
71 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function
468 static bool IsDigit(const char d) { in IsDigit() function
459 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
202 #define IsDigit(X) isdigit((unsigned char)X) macro