Searched defs:isdigit (Results 1 – 12 of 12) sorted by relevance
11 #define isdigit(c) ((c) >= '0' && (c) <= '9') macro
26 INTERCEPTOR(int, isdigit, int d) { in INTERCEPTOR() argument
54 #define isdigit(c) undefined_isdigit(c) macro
64 __ctype_inline int isdigit(int __c) in isdigit() function
116 #define isdigit(c) in_range(c, '0', '9') macro
10 static inline int isdigit(int ch) in isdigit() function
62 static inline int isdigit(int ch) in isdigit() function
59 def isdigit(c): return _ctoi(c) >= 48 and _ctoi(c) <= 57 function
133 #define isdigit(c) do_not_use_isdigit_with_safe_ctype macro
224 def isdigit(char): function
94 def isdigit(self): return self.data.isdigit() member in UserString
72 Bool VG_(isdigit) ( HChar c ) in VG_() argument