/third_party/musl/porting/liteos_m/kernel/include/ |
D | wctype.h | 25 #undef iswdigit 31 int iswdigit(wint_t); 47 #undef iswdigit 48 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
D | wchar.h | 143 #undef iswdigit 184 int iswdigit(wint_t); 198 #undef iswdigit 199 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | wctype.h | 25 #undef iswdigit 31 int iswdigit(wint_t); 47 #undef iswdigit 48 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
D | wchar.h | 143 #undef iswdigit 184 int iswdigit(wint_t); 198 #undef iswdigit 199 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
/third_party/musl/porting/liteos_a/kernel/include/ |
D | wctype.h | 25 #undef iswdigit 31 int iswdigit(wint_t); 47 #undef iswdigit 48 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
D | wchar.h | 143 #undef iswdigit 184 int iswdigit(wint_t); 198 #undef iswdigit 199 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
/third_party/musl/ndk_musl_include/ |
D | wctype.h | 25 #undef iswdigit 31 int iswdigit(wint_t); 47 #undef iswdigit 48 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
D | wchar.h | 141 #undef iswdigit 171 int iswdigit(wint_t); 185 #undef iswdigit 186 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
/third_party/musl/include/ |
D | wctype.h | 25 #undef iswdigit 31 int iswdigit(wint_t); 47 #undef iswdigit 48 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
D | wchar.h | 143 #undef iswdigit 184 int iswdigit(wint_t); 198 #undef iswdigit 199 #define iswdigit(a) (0 ? iswdigit(a) : ((unsigned)(a)-'0') < 10) macro
|
/third_party/musl/src/ctype/ |
D | iswdigit.c | 3 #undef iswdigit 5 int iswdigit(wint_t wc) in iswdigit() function 12 return iswdigit(c); in __iswdigit_l()
|
D | iswalnum.c | 5 return iswdigit(wc) || iswalpha(wc); in iswalnum()
|
D | iswctype.c | 29 return iswdigit(wc); in iswctype()
|
/third_party/musl/libc-test/src/functionalext/supplement/ctype/ |
D | iswdigit.c | 32 int result = iswdigit(ch); in iswdigit_0100() 46 int result = iswdigit(ch); in iswdigit_0200()
|
D | test_src_functionalext_supplement_ctype.gni | 28 "iswdigit",
|
/third_party/musl/src/stdio/ |
D | vfwscanf.c | 137 } else if (iswdigit(*p) && p[1]=='$') { in vfwscanf() 143 for (width=0; iswdigit(*p); p++) { in vfwscanf()
|
D | vfwprintf.c | 133 for (i=0; iswdigit(**s); (*s)++) { in getint() 179 if (iswdigit(s[1]) && s[2]=='$') { in wprintf_core() 194 if (iswdigit(s[1]) && s[2]=='$') { in wprintf_core()
|
/third_party/musl/libc-test/src/api/ |
D | wctype.c | 19 {int(*p)(wint_t) = iswdigit;} in f()
|
/third_party/musl/libc-test/src/functional/ |
D | clocale_mbfuncs.c | 71 if (iswdigit(map[i])) t_error("iswdigit returned true for %.4x (%.2x)\n", map[i], i); in main()
|
/third_party/musl/porting/liteos_m_iccarm/kernel/src/regex/ |
D | tre.h | 60 #define tre_isdigit iswdigit
|
/third_party/musl/porting/uniproton/kernel/src/regex/ |
D | tre.h | 60 #define tre_isdigit iswdigit
|
/third_party/musl/src/regex/ |
D | tre.h | 59 #define tre_isdigit iswdigit
|
/third_party/musl/porting/liteos_m/kernel/src/regex/ |
D | tre.h | 60 #define tre_isdigit iswdigit
|
/third_party/icu/icu4c/source/test/perf/charperf/ |
D | charperf.h | 200 iswdigit(ch); in StdLibIsDigit()
|
/third_party/python/PC/ |
D | launcher.c | 1218 result = result && iswdigit(*p); /* Result = False if first string element is not a digit. */ in validate_version() 1220 while (result && iswdigit(*p)) /* Require a major version */ in validate_version() 1224 result = iswdigit(*++p); /* Must be at least one digit */ in validate_version() 1225 while (result && iswdigit(*++p)) ; /* Skip any more Digits */ in validate_version()
|