Searched defs:IsDigit (Results 1 – 10 of 10) 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
133 bool IsDigit(const std::string& str, size_t min, size_t max) { 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