Searched refs:isascii (Results 1 - 24 of 24) sorted by relevance

/haiku/src/system/kernel/util/
H A Dinet_addr.c126 if (isascii(c) && isdigit((unsigned char)c)) {
132 } else if (base == 16 && isascii(c) &&
158 if (c != '\0' && (!isascii(c) || !isspace((unsigned char)c)))
/haiku/src/system/libroot/posix/locale/
H A Dctype.cpp13 #undef isascii macro
64 isascii(int c) function
/haiku/src/system/libnetwork/netresolv/inet/
H A Dinet_net_pton.c84 && isascii((u_char)(src[1]))
91 while ((ch = *src++) != '\0' && isascii((u_char)ch)
113 } else if (isascii((u_char)ch) && isdigit((u_char)ch)) {
125 isascii((u_char)ch) && isdigit((u_char)ch));
134 if (!isascii((u_char)ch) || !isdigit((u_char)ch))
141 if (ch == '/' && isascii((u_char)(src[0])) &&
153 } while ((ch = *src++) != '\0' && isascii((u_char)ch)
H A Dnsap_addr.c66 if (!isascii(c))
H A Dinet_cidr_pton.c103 while (ch = *src++, (isascii(ch) && isdigit(ch))) {
112 } while ((ch = *src++) != '\0' && isascii(ch) && isdigit(ch));
/haiku/src/system/libnetwork/netresolv/nameser/
H A Dns_ttl.c97 if (isascii(ch) && isupper(ch))
116 if (!isascii(ch) || !isprint(ch))
H A Dns_name.c391 if (isascii(c) && isupper(c))
H A Dns_print.c1087 *p++ = (isascii(rdata[m]) && isprint(rdata[m]))
/haiku/headers/posix/
H A Dctype.h18 int isascii(int);
80 #define isascii(c) (((c) & ~0x7f) == 0) /* ASCII characters have bit 8 cleared */ macro
/haiku/src/add-ons/kernel/network/ppp/ipcp/
H A Dipcp.cpp28 // TODO: Remove isascii() (needed for inet_aton()) when our kernel is finished!
29 // isascii() is not defined in the R5 kernel, thus we must define it here:
32 isascii(char c) function
/haiku/src/system/libroot/posix/glibc/ctype/
H A Dctype.h124 extern int isascii (int __c) __THROW;
191 # define isascii(c) __isascii (c) macro
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dprintf-parse.c36 # define ISASCII(Ch) isascii (Ch)
H A Dprintf-prs.c32 # define ISASCII(Ch) isascii (Ch)
H A Dprintf-parse.h109 if (! isascii (*format) && (len = __mbrlen (format, MB_CUR_MAX, ps)) > 0)
H A Dvfscanf.c412 if (!isascii ((unsigned char) *f))
/haiku/src/system/libroot/posix/glibc/stdlib/
H A Dstrtol.c184 # if defined STDC_HEADERS || (!defined isascii && !defined HAVE_ISASCII)
187 # define IN_CTYPE_DOMAIN(c) isascii(c)
/haiku/src/build/libgnuregex/
H A Dregex.c125 #ifndef isascii macro
126 #define isascii(c) 1
130 #define ISBLANK(c) (isascii (c) && isblank (c))
135 #define ISGRAPH(c) (isascii (c) && isgraph (c))
137 #define ISGRAPH(c) (isascii (c) && isprint (c) && !isspace (c))
140 #define ISPRINT(c) (isascii (c) && isprint (c))
141 #define ISDIGIT(c) (isascii (c) && isdigit (c))
142 #define ISALNUM(c) (isascii (c) && isalnum (c))
143 #define ISALPHA(c) (isascii (c) && isalpha (c))
144 #define ISCNTRL(c) (isascii (
[all...]
/haiku/src/kits/storage/mime/
H A DTextSnifferAddon.cpp244 (isascii((unsigned char)tp[0]) &&
246 isascii((unsigned char)tp[1]) &&
394 * each of its characters was approved by either the isascii() or
414 * standard, not isascii()) or any of the following controls: bell,
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_init.c140 #if !defined(isascii) /*%< XXX - could be a function */
141 # define isascii(c) (!(c & 0200)) macro
438 isascii(*cp) && !isspace((unsigned char)*cp))
448 isascii(*cp) &&
/haiku/src/system/libroot/posix/glibc/regex/
H A Dregex_internal.c288 if (isascii (pstr->raw_mbs[pstr->raw_mbs_idx + byte_idx])
710 if (isascii (*p) && BE (pstr->trans == NULL, 1))
851 if (pstr->offsets_needed && !isascii (ch))
883 if (! isascii (ch))
H A Dregcomp.c914 if (isascii (ch) && wch != ch)
/haiku/src/bin/network/telnet/
H A Dtelnet.c642 if ((c == ' ') || !isascii(c))
/haiku/src/system/libroot/stubbed/
H A Dlibroot_stubs.c1931 void isascii() {} function
H A Dlibroot_stubs_legacy.c1898 void isascii() {} function

Completed in 307 milliseconds