Searched refs:ISALNUM (Results 1 - 25 of 50) sorted by relevance

12

/macosx-10.10/bash-94.1.2/bash-3.2/lib/readline/
H A Dchardefs.h91 #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c)) macro
104 #define ALPHABETIC(c) (NON_NEGATIVE(c) && ISALNUM(c))
116 # define _rl_isident(c) (ISALNUM(c) || (c) == '_')
H A Dnls.c171 if (ISALNUM ((unsigned char)codeset[i]))
/macosx-10.10/postfix-255/postfix/src/util/
H A Dvalid_hostname.c108 if (ISALNUM(ch) || ch == '_') { /* grr.. */
302 if (field == 0 && len == 0 && ISALNUM(cp[1])) {
H A Dmac_parse.c136 SKIP(vp, ep, ISALNUM(*ep) || *ep == '_');
H A Dmac_expand.c165 if (!ISALNUM(ch) && ch != '_') {
H A Ddict_pcre.c613 if (!ISALNUM(*p)) {
716 else if (strncasecmp(p, "IF", 2) == 0 && !ISALNUM(p[2])) {
764 else if (strncasecmp(p, "ENDIF", 5) == 0 && !ISALNUM(p[5])) {
H A Ddict_regexp.c565 if (!ISALNUM(*p)) {
676 else if (strncasecmp(p, "IF", 2) == 0 && !ISALNUM(p[2])) {
707 else if (strncasecmp(p, "ENDIF", 5) == 0 && !ISALNUM(p[5])) {
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dcurl_fnmatch.c139 if(ISALNUM(c)) { /* ASCII value */
220 else if(ISALNUM(c)) {
363 found = ISALNUM(*s);
H A Dftplistparser.c663 if(ISALNUM(c)) {
679 else if(!ISALNUM(c) && c != '.') {
687 if(ISALNUM(c)) {
701 else if(!ISALNUM(c) && c != '.') {
709 if(ISALNUM(c)) {
735 else if(!ISALNUM(c) && c != '.' && c != ':') {
H A Dcurl_setup_once.h284 #define ISALNUM(x) (isalnum((int) ((unsigned char)x))) macro
H A Dparsedate.c263 while(**date && !ISALNUM(**date))
/macosx-10.10/gpatch-3/patch/
H A Dpartime.c69 #define ISALNUM(c) (CTYPE_DOMAIN (c) && isalnum (c)) macro
365 while (! ISALNUM (c = *str) && c != '-' && c != '+')
674 if (ISALNUM ((unsigned char) *s))
794 while (! ISALNUM ((unsigned char) *s) && *s)
803 while (! ISALNUM ((unsigned char) *s) && *s)
870 while (! ISALNUM ((unsigned char) *s) && *s)
/macosx-10.10/bash-94.1.2/bash-3.2/include/
H A Dchartypes.h72 #define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c)) macro
/macosx-10.10/cxxfilt-11/cxxfilt/binutils/
H A Dcxxfilt.c261 while (c != EOF && (ISALNUM (c) || strchr (valid_symbols, c)))
/macosx-10.10/cxxfilt-11/cxxfilt/include/
H A Dsafe-ctype.h94 #define ISALNUM(c) _sch_test(c, _sch_isalnum) macro
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_queue.c289 if (!ISALNUM(*cp))
312 if (!ISALNUM(*cp) && *cp != '_')
H A Dbounce_log.c203 if (ISALNUM(*cp)) {
/macosx-10.10/bash-94.1.2/bash-3.2/lib/glob/
H A Dsmatch.c160 result = ISALNUM (c);
193 result = (ISALNUM (c) || c == '_');
/macosx-10.10/rsync-45/rsync/lib/
H A Dwildmatch.c47 #define ISALNUM(c) (ISASCII(c) && isalnum(c)) macro
181 if (ISALNUM(t_ch))
/macosx-10.10/bash-94.1.2/bash-3.2/
H A Dgeneral.h107 #define legal_variable_char(c) (ISALNUM(c) || c == '_')
/macosx-10.10/cxxfilt-11/cxxfilt/bfd/
H A Dbinary.c153 if (! ISALNUM (*p))
/macosx-10.10/cxxfilt-11/cxxfilt/opcodes/
H A Dcgen-asm.c221 && (ISALNUM (*p)
/macosx-10.10/postfix-255/postfix/src/bounce/
H A Dbounce_templates.c281 if (!ISALNUM(*value))
/macosx-10.10/postfix-255/postfix/src/oqmgr/
H A Dqmgr.c434 buf[i], ISALNUM(buf[i]) ? buf[i] : '?');
/macosx-10.10/postfix-255/postfix/src/qmgr/
H A Dqmgr.c494 buf[i], ISALNUM(buf[i]) ? buf[i] : '?');

Completed in 292 milliseconds

12