Searched defs:isDigit (Results 1 – 5 of 5) sorted by relevance
42 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro
52 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro
99 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
96 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function
173 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit() function