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
459 static bool IsDigit(const char d) { in IsDigit() function
444 static bool IsDigit(const char d) { in IsDigit() function
465 static inline bool IsDigit(char ch) { return ch >= '0' && ch <= '9'; } 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
546 static bool IsDigit(char c) { return '0' <= c && c <= '9'; } in IsDigit() function in google::protobuf::__anona654feba0111::FlatAllocatorImpl
242 #define IsDigit(X) isdigit((unsigned char)X) macro