Searched defs:IsDigit (Results 1 – 14 of 14) sorted by relevance
183 bool IsDigit<10>(char ch) { in IsDigit() function187 bool IsDigit<16>(char ch) { in IsDigit() function
71 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function
85 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function
206 static inline bool IsDigit(char ch) { return ch >= '0' && ch <= '9'; } in IsDigit() function
459 static bool IsDigit(const char d) { in IsDigit() function
444 static bool IsDigit(const char d) { in IsDigit() function
167 bool IsDigit(const std::string &str) { 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
214 #define IsDigit(X) isdigit((unsigned char)X) macro