Home
last modified time | relevance | path

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

/bionic/tests/
Dctype_test.cpp53 TEST(ctype, isdigit) { in TEST() argument
54 EXPECT_TRUE(isdigit('1')); in TEST()
55 EXPECT_FALSE(isdigit('a')); in TEST()
56 EXPECT_FALSE(isdigit('x')); in TEST()
/bionic/libc/upstream-openbsd/lib/libc/gen/
Dcharclass.h18 { "digit", isdigit },
Disctype.c68 #undef isdigit
70 isdigit(int c) in isdigit() function
/bionic/libc/upstream-openbsd/lib/libc/net/
Dinet_addr.c97 if (!isdigit((unsigned char)c)) in inet_aton()
109 isdigit((unsigned char)c)) { in inet_aton()
Dinet_network.c56 if (isdigit(c)) { in inet_network()
/bionic/libc/dns/resolv/
Dres_debug.c795 while (isdigit((unsigned char)*cp)) in precsize_aton()
800 if (isdigit((unsigned char)*cp)) { in precsize_aton()
802 if (isdigit((unsigned char)*cp)) { in precsize_aton()
833 while (isdigit((unsigned char)*cp)) in latlon2ul()
839 if (!(isdigit((unsigned char)*cp))) in latlon2ul()
842 while (isdigit((unsigned char)*cp)) in latlon2ul()
848 if (!(isdigit((unsigned char)*cp))) in latlon2ul()
851 while (isdigit((unsigned char)*cp)) in latlon2ul()
856 if (isdigit((unsigned char)*cp)) { in latlon2ul()
858 if (isdigit((unsigned char)*cp)) { in latlon2ul()
[all …]
/bionic/libc/bionic/
Dctype.cpp48 return isdigit(c); in isdigit_l()
Dstubs.cpp216 if (name[0] != 'u' || !isdigit(name[1])) { in app_id_from_name()
229 if (end[1] == 'a' && isdigit(end[2])) { in app_id_from_name()
232 } else if (end[1] == 'i' && isdigit(end[2])) { in app_id_from_name()
Dwctype.cpp41 int iswdigit(wint_t wc) { return isdigit(wc); } in iswdigit()
Dndk_cruft.cpp109 while (*s && isdigit(*s)) { in strtotimeval()
/bionic/libc/include/
Dctype.h65 int isdigit(int);
/bionic/libc/upstream-openbsd/lib/libc/stdlib/
Dstrtoull.c79 if (isdigit(c)) in strtoull()
Dstrtoul.c77 if (isdigit(c)) in strtoul()
Dstrtoumax.c77 if (isdigit(c)) in strtoumax()
Dstrtoll.c107 if (isdigit(c)) in strtoll()
Dstrtoimax.c105 if (isdigit(c)) in strtoimax()
Dstrtol.c116 if (isdigit(c)) in strtol()
/bionic/libc/dns/nameser/
Dns_ttl.c114 if (isdigit(ch)) { in ns_parse_ttl()
Dns_name.c1092 if (!isdigit(c&0xff)) in encode_bitsring()
/bionic/libstdc++/include/
Dcctype46 using ::isdigit;
/bionic/libc/upstream-netbsd/lib/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/dns/
Dgethnamaddr.c670 if (isdigit((u_char) name[0])) in gethostbyname_internal_real()
700 if (!isdigit((u_char) *cp) && *cp != '.') in gethostbyname_internal_real()
/bionic/libc/kernel/tools/
Dcpp.py628 if not digit.isdigit():