| /src/external/apache2/llvm/dist/libcxx/include/ |
| ctype.h | 16 int isalnum(int c); 42 #undef isalnum macro
|
| /src/external/cddl/osnet/dist/common/util/ |
| strtolctype.h | 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) macro 67 * The following macro is a version of isalnum() that limits alphabetic
|
| /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/ |
| missing_files.py | 26 # Functions str.isascii() and str.isalnum are available starting Python 31 def isalnum(ch): function 32 return ch.isalnum() 36 # str.isalnum() so provide our own. 38 # We could import isalnum() and isascii() from the curses library, 57 def isalnum(c): function 83 if not isascii(ch) or not (isalnum(ch) or ch in "_-"):
|
| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/ |
| missing_files.py | 26 # Functions str.isascii() and str.isalnum are available starting Python 31 def isalnum(ch): function 32 return ch.isalnum() 36 # str.isalnum() so provide our own. 38 # We could import isalnum() and isascii() from the curses library, 57 def isalnum(c): function 83 if not isascii(ch) or not (isalnum(ch) or ch in "_-"):
|
| /src/sys/sys/ |
| ctype_inline.h | 48 #define isalnum(c) ((int)((_ctype_tab_ + 1)[(c)] & (_CTYPE_A|_CTYPE_D))) macro
|
| /src/sys/lib/libkern/ |
| libkern.h | 74 LIBKERN_INLINE int isalnum(int) __unused; 181 isalnum(int ch) function 221 return (isprint(ch) && ch != ' ' && !isalnum(ch));
|
| /src/external/cddl/osnet/sys/kern/ |
| ddi.c | 88 #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)) {
|
| /src/external/gpl3/binutils/dist/include/ |
| safe-ctype.h | 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) 125 #undef isalnum macro 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
| /src/external/gpl3/binutils.old/dist/include/ |
| safe-ctype.h | 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) 125 #undef isalnum macro 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
| /src/external/gpl3/gcc/dist/include/ |
| safe-ctype.h | 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) 125 #undef isalnum macro 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
| /src/external/gpl3/gcc.old/dist/include/ |
| safe-ctype.h | 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) 125 #undef isalnum macro 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
| /src/external/gpl3/gdb.old/dist/include/ |
| safe-ctype.h | 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) 125 #undef isalnum macro 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
| /src/external/gpl3/gdb/dist/include/ |
| safe-ctype.h | 90 #define ISALNUM(c) _sch_test(c, _sch_isalnum) 125 #undef isalnum macro 126 #define isalnum(c) do_not_use_isalnum_with_safe_ctype macro
|
| /xsrc/external/mit/libX11/dist/modules/im/ximcp/ |
| imLcPrs.c | 130 #ifndef isalnum 131 #define isalnum(c) \ macro 262 if (isalnum(c) || c == '_' || c == '-') { 266 while (isalnum(c) || c == '_' || c == '-') {
|
| /src/games/warp/ |
| warp.h | 108 #ifndef isalnum 109 # define isalnum(c) (isalpha(c) || isdigit(c)) macro
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| locale_facets.h | 2667 isalnum(_CharT __c, const locale& __loc) function
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| locale_facets.h | 2655 isalnum(_CharT __c, const locale& __loc) function
|
| /src/sys/netinet6/ |
| icmp6.c | 1524 #define isalnum(x) (isalpha(x) || ('0' <= (x) && (x) <= '9')) macro 1603 if (!isalpha(p[0]) || !isalnum(p[i - 1])) 1606 if (!isalnum(*p) && *p != '-')
|