Home
last modified time | relevance | path

Searched refs:isdigit (Results 1 – 20 of 20) sorted by relevance

/bionic/libc/unistd/
Dcharclass.h18 { "digit", isdigit },
/bionic/libc/upstream-netbsd/common/lib/libc/inet/
Dinet_addr.c142 if (!isdigit((unsigned char)c)) in inet_aton()
155 if (isascii(c) && isdigit((unsigned char)c)) { in inet_aton()
/bionic/libc/bionic/
Dstrtotimeval.c50 while ( *s && isdigit(*s) ) in strtotimeval()
Dstubs.cpp214 if (name[0] != 'u' || !isdigit(name[1])) { in app_id_from_name()
227 if (end[1] == 'a' && isdigit(end[2])) { in app_id_from_name()
230 } else if (end[1] == 'i' && isdigit(end[2])) { in app_id_from_name()
Dwchar.cpp100 int iswdigit(wint_t wc) { return isdigit(wc); } in iswdigit()
115 case WC_TYPE_DIGIT: return isdigit(wc); in iswctype()
/bionic/libc/netbsd/resolv/
Dres_debug.c734 while (isdigit((unsigned char)*cp)) in precsize_aton()
739 if (isdigit((unsigned char)*cp)) { in precsize_aton()
741 if (isdigit((unsigned char)*cp)) { in precsize_aton()
772 while (isdigit((unsigned char)*cp)) in latlon2ul()
778 if (!(isdigit((unsigned char)*cp))) in latlon2ul()
781 while (isdigit((unsigned char)*cp)) in latlon2ul()
787 if (!(isdigit((unsigned char)*cp))) in latlon2ul()
790 while (isdigit((unsigned char)*cp)) in latlon2ul()
795 if (isdigit((unsigned char)*cp)) { in latlon2ul()
797 if (isdigit((unsigned char)*cp)) { in latlon2ul()
[all …]
/bionic/libc/upstream-netbsd/libc/inet/
Dinet_pton.c119 if (!isdigit(c)) in inet_pton4()
126 else if (isdigit(c) && c != '9') in inet_pton4()
133 if (isdigit(c)) { in inet_pton4()
/bionic/libc/include/
Dctype.h75 int isdigit(int);
117 __CTYPE_INLINE int isdigit(int c) in isdigit() function
/bionic/libc/stdlib/
Dstrtoul.c77 if (isdigit(c)) in strtoul()
Dstrtoumax.c90 if (isdigit(c)) in strtoumax()
Dstrtol.c105 if (isdigit(c)) in strtol()
Dstrtoimax.c136 if (isdigit(c)) in strtoimax()
Dctype_.c107 int isdigit(int c) in isdigit() function
/bionic/libc/kernel/common/linux/
Dctype.h36 #define isdigit(c) ((__ismask(c)&(_D)) != 0) macro
/bionic/libc/netbsd/nameser/
Dns_ttl.c112 if (isdigit(ch)) { in ns_parse_ttl()
Dns_name.c887 if (!isdigit(c&0xff)) in encode_bitsring()
/bionic/libstdc++/include/
Dcctype46 using ::isdigit;
/bionic/libc/upstream-netbsd/libc/regex/
Dregcomp.c475 REQUIRE(!MORE() || !isdigit((unsigned char)PEEK()), REG_BADRPT); in p_ere_exp()
487 (c == '{' && MORE2() && isdigit((unsigned char)PEEK2())) )) in p_ere_exp()
516 if (isdigit((unsigned char)PEEK())) { in p_ere_exp()
537 (c == '{' && MORE2() && isdigit((unsigned char)PEEK2())) ) ) in p_ere_exp()
709 if (MORE() && isdigit((unsigned char)PEEK())) { in p_simp_re()
742 while (MORE() && isdigit((unsigned char)PEEK()) && count <= DUPMAX) { in p_count()
/bionic/libc/netbsd/
Dgethnamaddr.c665 if (isdigit((u_char) name[0])) in gethostbyname_internal_real()
695 if (!isdigit((u_char) *cp) && *cp != '.') in gethostbyname_internal_real()
/bionic/libc/kernel/tools/
Dcpp.py1029 if not digit.isdigit():