Searched refs:isalnum (Results 76 - 100 of 286) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/wpa/dist/src/wps/
H A Dwps_upnp_ssdp.c51 end1 = !(isalnum(c1) || c1 == '_' || c1 == '-');
52 end2 = !(isalnum(c2) || c2 == '_' || c2 == '-');
66 int end = !(isalnum(c) || c == '_' || c == '-');
/netbsd-current/lib/libcompat/regexp/
H A Dregexp.c929 if ((!isalnum(UCHARAT(reginput))) && *reginput != '_')
933 (isalnum(UCHARAT(reginput - 1))
939 if (isalnum(UCHARAT(reginput)) || *reginput == '_')
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Dobjc-lang.c869 if (isalnum (*s2) || (*s2 == '_') || (*s2 == ':'))
933 while (isalnum (*s1) || (*s1 == '_'))
944 while (isalnum (*s2) || (*s2 == '_'))
957 if (isalnum (*s2) || (*s2 == '_') || (*s2 == ':'))
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Dobjc-lang.c844 if (isalnum (*s2) || (*s2 == '_') || (*s2 == ':'))
908 while (isalnum (*s1) || (*s1 == '_'))
919 while (isalnum (*s2) || (*s2 == '_'))
932 if (isalnum (*s2) || (*s2 == '_') || (*s2 == ':'))
H A Dada-lex.l577 else if (isalnum (name0[i0]))
665 && !isalnum (str[i + 3]) && str[i + 3] != '_')
/netbsd-current/sys/lib/libkern/
H A Dlibkern.h72 LIBKERN_INLINE int isalnum(int) __unused;
179 isalnum(int ch) function
219 return (isprint(ch) && ch != ' ' && !isalnum(ch));
/netbsd-current/external/historical/nawk/dist/
H A Dlex.c126 if (!isalnum(c) && c != '.' && c != '_')
135 if (isalnum(c) || c == '_')
/netbsd-current/usr.bin/m4/
H A Dmain.c695 while ((isalnum(c = gpbc()) || c == '_') && tp < etp)
704 while (isalnum(c = gpbc()) || c == '_') {
/netbsd-current/usr.bin/at/
H A Dat.c341 if (!isalnum((unsigned char)*ap)) {
372 if (*ap != '/' && !isalnum((unsigned char)*ap))
/netbsd-current/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangOptionDocEmitter.cpp191 if (!isalnum(*I) && *I != '-')
200 if (isalnum(C))
/netbsd-current/external/cddl/osnet/sys/kern/
H A Dddi.c88 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) macro
104 * The following macro is a local version of isalnum() which limits
207 if (!isalnum(c = *ustr)) {
/netbsd-current/external/mit/lua/dist/src/
H A Dlbaselib.c70 if (!isalnum((unsigned char)*s)) /* no digit? */
78 } while (isalnum((unsigned char)*s));
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Didentifier.d337 !((dc >= 0x80 && isUniAlpha(dc)) || isalnum(dc) || dc == '_'))
/netbsd-current/crypto/external/bsd/libsaslc/dist/src/
H A Dparser.c97 * followed by isalnum(3) or '_' characters.
141 while (isalnum((unsigned char)**c) || **c == '_')
/netbsd-current/external/lgpl3/mpc/dist/src/
H A Dinp_str.c52 while (isalnum ((unsigned char) c) || c == '_') {
/netbsd-current/sbin/dump/
H A Ddumprmt.c164 if (!isascii(c) || !(isalnum(c) || c == '_' || c == '-')) {
/netbsd-current/external/gpl2/gettext/dist/gettext-runtime/intl/
H A Dl10nflist.c358 if (isalnum ((unsigned char) codeset[cnt]))
/netbsd-current/external/gpl2/texinfo/dist/makeinfo/
H A Dmakeinfo.h292 #define URL_SAFE_CHAR(ch) (isalnum (ch))
/netbsd-current/external/bsd/tre/dist/lib/
H A Dtre-internal.h85 #define tre_isalnum isalnum
/netbsd-current/external/gpl2/xcvs/dist/lib/
H A Dfnmatch.c111 # define ISALNUM(c) (ISASCII (c) && isalnum (c))
/netbsd-current/external/bsd/mdocml/dist/
H A Deqn_html.c167 } else if (isalnum((unsigned char)*cp)) {
/netbsd-current/external/bsd/top/dist/
H A Dutils.c261 if (isalnum(ch))
/netbsd-current/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp41 while (isalnum((LastChar = getchar())))
/netbsd-current/external/apache2/llvm/dist/llvm/lib/AsmParser/
H A DLLLexer.cpp142 return isalnum(static_cast<unsigned char>(C)) || C == '-' || C == '$' ||
324 while (isalnum(static_cast<unsigned char>(CurPtr[0])) ||
421 while (isalnum(static_cast<unsigned char>(CurPtr[0])) ||
461 if (!KeywordEnd && !isalnum(static_cast<unsigned char>(*CurPtr)) &&
/netbsd-current/usr.bin/sort/
H A Dinit.c444 if (i == '\n' || i == '\t' || i == ' ' || isalnum(i))

Completed in 222 milliseconds

1234567891011>>