/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | cctype | 19 int isalnum(int c); 46 #ifdef isalnum 47 #undef isalnum 103 using ::isalnum;
|
H A D | ctype.h | 42 #undef isalnum
|
/netbsd-src/external/bsd/unbound/dist/testcode/ |
H A D | readhex.c | 74 if(!isalnum((unsigned char)*p)) in hex_to_buf() 78 log_assert(*p && isalnum((unsigned char)*p)); in hex_to_buf()
|
/netbsd-src/tests/usr.bin/xlint/lint1/ |
H A D | msg_342.c | 17 int isalnum(int); 41 isalnum(c); in cover_is_ctype_function()
|
/netbsd-src/sys/external/bsd/acpica/dist/tools/acpisrc/ |
H A D | ascase.c | 375 if (isalnum ((int) *(SubBuffer-1)) || in AsMixedCaseToUnderscores() 403 while ((isalnum ((int) *TokenEnd)) || in AsMixedCaseToUnderscores() 595 while ((isalnum ((int) *TokenEnd)) || (*TokenEnd == '_')) in AsUppercaseTokens()
|
/netbsd-src/external/gpl3/gcc.old/dist/gcc/d/ |
H A D | d-system.h | 41 #undef isalnum 42 #define isalnum(c) ISALNUM(c) macro
|
/netbsd-src/external/mpl/bind/dist/lib/isc/ |
H A D | url.c | 198 (isalnum((unsigned char)c) || IS_MARK(c) || (c) == '%' || \ 204 #define IS_HOST_CHAR(c) (isalnum((unsigned char)c) || (c) == '.' || (c) == '-') 209 (isalnum((unsigned char)c) || (c) == '.' || (c) == '-' || (c) == '_') 437 if (isalnum((unsigned char)ch) || ch == '%' || ch == '.' || in http_parse_host_char()
|
/netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/ |
H A D | url.c | 198 (isalnum((unsigned char)c) || IS_MARK(c) || (c) == '%' || \ 204 #define IS_HOST_CHAR(c) (isalnum((unsigned char)c) || (c) == '.' || (c) == '-') 208 (isalnum((unsigned char)c) || (c) == '.' || (c) == '-' || (c) == '_') 436 if (isalnum((unsigned char)ch) || ch == '%' || ch == '.' || in http_parse_host_char()
|
/netbsd-src/lib/libform/ |
H A D | type_alnum.c | 118 while(isalnum((unsigned char)buf[cur])) in alnum_check_field() 158 return (isalnum(c) ? TRUE : FALSE); in alnum_check_char()
|
/netbsd-src/external/gpl3/binutils.old/dist/include/ |
H A D | safe-ctype.h | 125 #undef isalnum 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
/netbsd-src/bin/csh/ |
H A D | char.h | 73 (isalnum((unsigned char) (c)) || (c) == '_')) 83 #define Isalnum(c) (((c) & QUOTE) ? 0 : isalnum((unsigned char) (c)))
|
/netbsd-src/external/gpl3/gcc.old/dist/include/ |
H A D | safe-ctype.h | 125 #undef isalnum 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
/netbsd-src/external/gpl3/binutils/dist/include/ |
H A D | safe-ctype.h | 125 #undef isalnum 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
/netbsd-src/external/gpl3/gcc/dist/include/ |
H A D | safe-ctype.h | 125 #undef isalnum 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
/netbsd-src/usr.sbin/gspa/gspa/ |
H A D | gsp_lex.c | 98 } while( isalnum(c) || c == '_' ); in yylex() 132 && !(isalnum((unsigned char)lp[1]) || lp[1] == '_') ){ in yylex()
|
/netbsd-src/usr.bin/whatis/ |
H A D | whatis.c | 204 for (; *bp && *bp != '[' && !isalnum((unsigned char)*bp); ++bp); in match() 210 isalnum((unsigned char) *bp)); ++bp); in match()
|
/netbsd-src/games/fortune/strfile/ |
H A D | strfile.c | 205 for (nsp = sp; !isalnum((unsigned char)*nsp); nsp++) in main() 402 while (!isalnum(c1 = getc(Sort_1)) && c1 != '\0') in cmp_str() 404 while (!isalnum(c2 = getc(Sort_2)) && c2 != '\0') in cmp_str()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c_std/ |
H A D | cctype | 48 #undef isalnum 64 using ::isalnum;
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_std/ |
H A D | cctype | 48 #undef isalnum 64 using ::isalnum;
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_global/ |
H A D | cctype | 48 #undef isalnum 64 using ::isalnum;
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c_global/ |
H A D | cctype | 48 #undef isalnum 64 using ::isalnum;
|
/netbsd-src/games/warp/ |
H A D | intrp.c | 120 for (d=scrbuf; isalnum((unsigned char)*s); s++,d++) in filexp() 167 for (s++; isalnum((unsigned char)*s); s++) *d++ = *s; in filexp() 532 while (*s && !isalnum(*s) && *s != '&') s++; in getrealname()
|
H A D | warp.h | 108 #ifndef isalnum 109 # define isalnum(c) (isalpha(c) || isdigit(c)) macro
|
/netbsd-src/external/gpl2/xcvs/dist/src/ |
H A D | expand_path.c | 55 while (isalnum ((unsigned char) *p) || *p == '_') in variable_set() 264 : !isalnum (name[s]) && name[s] != '_') in expand_path()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/ |
H A D | ctype.h | 35 using std::isalnum;
|