Searched refs:isalnum (Results 251 - 275 of 286) sorted by relevance

<<1112

/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Di386-tdep.c4235 while (isalnum (*s))
4331 while (isalnum (*s))
4347 while (isalnum (*s))
H A Dlinespec.c837 || !(isalnum (op[-1]) || op[-1] == '_')))
H A Dada-lang.c1418 && !isalnum (encoded[i + op_len]))
1534 if (encoded[i] == 'X' && i != 0 && isalnum (encoded[i - 1]))
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
H A Dcpplint.py1321 if ix >= 0 and (ix == 0 or (not line[ix - 1].isalnum() and
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp734 return llvm::all_of(S, [](char C) { return std::isalnum(C); });
/netbsd-current/usr.sbin/user/
H A Duser.c642 #define VALID_CHAR(c) (isalnum(c) || (c) == '.' || (c) == '_' || (c) == '-')
/netbsd-current/external/bsd/unbound/dist/sldns/
H A Dwire2str.c2028 if(!isalnum((unsigned char)(*d)[i+1]))
H A Dstr2wire.c2759 if(!isalnum((unsigned char)*ptr))
/netbsd-current/external/bsd/file/dist/src/
H A Dapprentice.c2505 return (isascii(x) && isalnum(x)) || strchr(extra, x);
/netbsd-current/libexec/httpd/
H A Dbozohttpd.c1104 if (!isalnum((unsigned char)*s) &&
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dclientloop.c274 if (!isalnum((u_char)display[i]) &&
H A Dsession.c366 if (!isalnum((u_char)s[i]) &&
/netbsd-current/external/apache2/llvm/dist/llvm/lib/IR/
H A DAsmWriter.cpp422 // By making this unsigned, the value passed in to isalnum will always be
427 if (!isalnum(static_cast<unsigned char>(C)) && C != '-' && C != '.' &&
3445 if (isalnum(static_cast<unsigned char>(C)) || C == '-' || C == '$' ||
/netbsd-current/external/mpl/dhcp/dist/client/
H A Ddhclient.c5584 } else if (isalnum((unsigned char)*p) == 0) {
5645 if(!(isalnum((unsigned char)*ptr) ||
/netbsd-current/external/gpl3/autoconf/dist/
H A Dmaint.mk556 ctype_re = isalnum|isalpha|isascii|isblank|iscntrl|isdigit|isgraph|islower\
/netbsd-current/dist/pf/sbin/pfctl/
H A Dparse.y5129 if (isalnum(c) || c == '_') {
5197 (isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \
5202 if (isalnum(c) || c == ':' || c == '_') {
/netbsd-current/external/bsd/mdocml/dist/
H A Droff.c1220 isalnum((unsigned char)*cp) == 0 &&
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dlinespec.c812 || !(isalnum (op[-1]) || op[-1] == '_')))
/netbsd-current/usr.sbin/syslogd/
H A Dsyslogd.c3352 if (!isalnum((unsigned char)*p) &&
/netbsd-current/external/mpl/bind/dist/lib/isc/netmgr/
H A Dhttp.c3393 #define MATCH_ALNUM() isalnum((unsigned char)(st->str[0]))
/netbsd-current/external/bsd/libarchive/dist/test_utils/
H A Dtest_main.c2440 isalnum((unsigned char)*q))) {
/netbsd-current/external/gpl3/binutils.old/dist/gprofng/src/
H A DDbeSession.cc3091 if ((isalnum ((int) (*p)) == 0) && (*p != '_'))
/netbsd-current/external/gpl3/binutils/dist/gprofng/src/
H A DDbeSession.cc3091 if ((isalnum ((int) (*p)) == 0) && (*p != '_'))
/netbsd-current/external/public-domain/sqlite/dist/
H A Dshell.c1969 if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ) return '"';
8496 while( i>0 && (isalnum((unsigned char)pCur->zLine[i-1]) || pCur->zLine[i-1]=='_') ){
20510 if( isalnum(z[k-1])!=isalnum(z[k]) && (z[k]&0xc0)!=0x80 ) break;
22374 for(i=nLine-1; i>=0 && (isalnum(zLine[i]) || zLine[i]=='_'); i--){}
/netbsd-current/external/gpl2/diffutils/dist/lib/
H A Dregex.c241 # define ISALNUM(c) (IN_CTYPE_DOMAIN (c) && isalnum (c))

Completed in 832 milliseconds

<<1112