/openbsd/gnu/llvm/libcxx/include/ |
H A D | cctype | 19 int isalnum(int c); 55 #ifdef isalnum 56 #undef isalnum 112 using ::isalnum _LIBCPP_USING_IF_EXISTS;
|
H A D | ctype.h | 44 #undef isalnum
|
/openbsd/lib/libc/gen/ |
H A D | isctype.c | 40 #undef isalnum 42 isalnum(int c) in isalnum() function 47 DEF_STRONG(isalnum);
|
H A D | charclass.h | 14 { "alnum", isalnum },
|
/openbsd/usr.sbin/unbound/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()
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/c_std/ |
H A D | std_cctype.h | 52 #undef isalnum 68 using ::isalnum;
|
/openbsd/gnu/gcc/libstdc++-v3/include/c_std/ |
H A D | std_cctype.h | 54 #undef isalnum 70 using ::isalnum;
|
/openbsd/bin/csh/ |
H A D | char.h | 62 (isalnum((unsigned char) (c)) || (c) == '_')) 71 #define Isalnum(c) (((c) & QUOTE) ? 0 : isalnum((unsigned char) (c)))
|
/openbsd/include/ |
H A D | ctype.h | 68 int isalnum(int); 115 __only_inline int isalnum(int _c) in isalnum() function 223 return isalnum(_c); in isalnum_l()
|
/openbsd/lib/libc/hidden/ |
H A D | ctype.h | 22 __only_inline int isalnum(int _c); 61 PROTO_NORMAL(isalnum);
|
/openbsd/gnu/llvm/libcxx/utils/ |
H A D | generate_extended_grapheme_cluster_test.py | 63 if c.isalnum(): 65 if next.isalnum():
|
/openbsd/regress/lib/libc/locale/check_isw/ |
H A D | check_isw.c | 55 check_bool(isalnum(i), iswalnum(i), '1'); in test1() 105 check_bool(isalnum(s[j]), iswalnum(c), '1'); in test2()
|
/openbsd/usr.bin/look/ |
H A D | look.c | 143 if (!dflag || isalnum((unsigned char)ch)) in look() 288 if (dflag && !isalnum((unsigned char)ch)) { in compare()
|
/openbsd/gnu/gcc/libmudflap/testsuite/libmudflap.c/ |
H A D | pass47-frag.c | 9 isdigit (buf[3])) == 0 && isalnum ('4')); in main()
|
/openbsd/games/fortune/strfile/ |
H A D | strfile.c | 182 for (nsp = sp; !isalnum((unsigned char)*nsp); nsp++) in main() 396 while (!isalnum(c1 = getc(Sort_1)) && c1 != '\0') in cmp_str() 398 while (!isalnum(c2 = getc(Sort_2)) && c2 != '\0') in cmp_str()
|
/openbsd/usr.bin/mg/ |
H A D | grep.c | 133 if (isalnum(c) || c == '_') in gid() 142 if (!isalnum(c) && c != '_') in gid() 149 if (!isalnum(c) && c != '_') in gid()
|
/openbsd/usr.bin/rsync/ |
H A D | charclass.h | 14 { "alnum", isalnum },
|
/openbsd/lib/libcurses/tinfo/ |
H A D | comp_scan.c | 476 if (!isalnum(UChar(ch)) in _nc_get_token() 557 while (isalnum(UChar(*s))) { in _nc_get_token() 672 if (!isalnum(UChar(ch))) { in _nc_get_token() 708 while (isalnum(ch = next_char())) { in _nc_get_token()
|
/openbsd/sbin/dhcp6leased/ |
H A D | parse_lease.y | 247 (isalnum(x) || (ispunct(x) && x != '(' && x != ')' && \ in yylex() 252 if (isalnum(c) || c == ':' || c == '_') { in yylex()
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/c_compatibility/ |
H A D | ctype.h | 35 using std::isalnum;
|
/openbsd/gnu/gcc/libstdc++-v3/include/c_compatibility/ |
H A D | ctype.h | 35 using std::isalnum;
|
/openbsd/usr.sbin/smtpd/ |
H A D | to.c | 341 if (!isalnum((unsigned char)*end) && in text_to_relayhost() 659 if (!isalnum((unsigned char)*line) && in alias_is_username() 695 if (!isalnum((unsigned char)*line) && in alias_is_address() 703 if (!isalnum((unsigned char)*domain) && in alias_is_address() 772 !isalnum((unsigned char)alias->u.buffer[4]) || in alias_is_error()
|
/openbsd/usr.sbin/dhcpd/ |
H A D | conflex.c | 151 } else if (c == '-' || (isascii(c) && isalnum(c))) { in get_token() 264 if (!isascii(c) || (c != '-' && c != '_' && !isalnum(c))) { in read_num_or_name()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | LibCxxUnorderedMap.cpp | 73 if (scratch.consume_front("__") && std::isalnum(scratch[0])) { in consumeInlineNamespace() 74 scratch = scratch.drop_while([](char c) { return std::isalnum(c); }); in consumeInlineNamespace()
|
/openbsd/gnu/usr.bin/cvs/src/ |
H A D | expand_path.c | 46 while (isalnum ((unsigned char) *p) || *p == '_') 136 : isalnum ((unsigned char) *s) == 0 && *s != '_')
|