Searched defs:isdigit (Results 1 – 9 of 9) sorted by relevance
26 INTERCEPTOR(int, isdigit, int d) { in INTERCEPTOR() argument
18 #define isdigit(c) ('0' <= (c) && (c) <= '9') macro
54 #define isdigit(c) undefined_isdigit(c) macro
25 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
59 def isdigit(c): return 48 <= _ctoi(c) <= 57 function
225 def isdigit(char): function
94 def isdigit(self): return self.data.isdigit() member in UserString
1232 def isdigit(self): return self.data.isdigit() member in UserString