Searched defs:isDigit (Results 1 – 5 of 5) sorted by relevance
112 bool isDigit(char c) { return c >= '0' && c <= '9'; } isDigit() function
159 TEST(CharInfoTest, isDigit) { in TEST() argument
114 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
105 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function
170 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit() function