Searched defs:isDigit (Results 1 – 5 of 5) sorted by relevance
41 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro
51 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro
99 LLVM_READONLY inline bool isDigit(unsigned char c) { 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