/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cctype | 20 int isalpha(int c); 58 #ifdef isalpha 59 # undef isalpha 111 using ::isalpha _LIBCPP_USING_IF_EXISTS;
|
H A D | ctype.h | 17 int isalpha(int c); 45 # undef isalpha
|
/freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
H A D | TGLexer.cpp | 150 if (isalpha(CurChar) || CurChar == '_') in LexToken() 258 if (isalpha(NextChar) || NextChar == '_') in LexToken() 324 if (!isalpha(CurPtr[0]) && CurPtr[0] != '_') in LexVarName() 330 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexVarName() 342 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in LexIdentifier() 551 if (!isalpha(*CurPtr)) in LexExclaim() 555 while (isalpha(*CurPtr)) in LexExclaim() 916 if (*CurPtr != '_' && !isalpha(*CurPtr)) in prepLexMacroName() 920 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in prepLexMacroName()
|
/freebsd/lib/libc/iconv/ |
H A D | citrus_bcs_strtol.c | 51 #undef isalpha 52 #define isalpha(c) _bcs_isalpha(c) macro
|
H A D | citrus_bcs_strtoul.c | 51 #undef isalpha 52 #define isalpha(c) _bcs_isalpha(c) macro
|
/freebsd/cddl/contrib/opensolaris/common/util/ |
H A D | strtolctype.h | 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) 50 #define isalpha(ch) (isupper(ch) || islower(ch)) macro
|
/freebsd/sys/cddl/contrib/opensolaris/common/util/ |
H A D | strtolctype.h | 49 #define isalnum(ch) (isalpha(ch) || isdigit(ch)) 50 #define isalpha(ch) (isupper(ch) || islower(ch)) macro
|
/freebsd/include/ |
H A D | ctype.h | 49 int isalpha(int); 88 #define isalpha(c) __sbistype((c), _CTYPE_A) macro
|
/freebsd/lib/libc/locale/ |
H A D | isctype.c | 56 #undef isalpha 58 isalpha(int c) in isalpha() function
|
H A D | Makefile.inc | 33 ctype.3 digittoint.3 isalnum.3 isalpha.3 isascii.3 isblank.3 iscntrl.3 \ 54 MLINKS+=isalpha.3 isalpha_l.3
|
/freebsd/contrib/sendmail/libsm/ |
H A D | strto.c | 122 else if (isascii(c) && isalpha(c)) 228 else if (isascii(c) && isalpha(c))
|
/freebsd/contrib/mandoc/ |
H A D | demandoc.c | 165 emit = isalpha((unsigned char)p[0]) && in pstring() 166 isalpha((unsigned char)p[1]); in pstring()
|
/freebsd/usr.bin/localedef/bootstrap/ |
H A D | ctype.h | 47 int (isalpha)(int); variable
|
/freebsd/crypto/openssh/openbsd-compat/ |
H A D | charclass.h | 17 { "alpha", isalpha },
|
H A D | strtoull.c | 86 else if (isalpha(c)) in strtoull()
|
H A D | strtoul.c | 84 else if (isalpha(c)) in strtoul()
|
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/ |
H A D | ctype.h | 34 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
|
/freebsd/contrib/byacc/ |
H A D | reader.c | 582 if (isalpha(UCH(c))) in keyword() 589 if (isalpha(UCH(c))) in keyword() 1770 if (isalpha(UCH(c)) || c == '_' || c == '.' || c == '$') in declare_tokens() 1849 else if (c == '\n' || isalpha(UCH(c)) || !isspace(UCH(c))) in declare_expect() 1994 if (isalpha(UCH(c)) || c == '_' || c == '.' || c == '$') in declare_types() 2032 if (!isalpha(UCH(c)) && c != '_' && c != '.' && c != '$') in declare_start() 2277 if (!isalpha(UCH(*p)) && *p != '_') in parse_id() 2443 else if (isalpha(UCH(*p)) || *p == '_') in compile_arg() 2538 else if (isalpha(UCH(*p)) || *p == '_') in can_elide_arg() 2666 if (!isalpha(UCH(c)) && c != '_' && c != '.' && c != '_') in advance_to_start() [all …]
|
/freebsd/sys/sys/ |
H A D | ctype.h | 67 isalpha(int c) in isalpha() function
|
/freebsd/usr.bin/dtc/ |
H A D | util.hh | 131 inline bool isalpha(char c) in isalpha() function
|
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
H A D | cctype.inc | 12 using ::isalpha _LIBCPP_USING_IF_EXISTS;
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cctype.cppm |
|
/freebsd/sys/libkern/ |
H A D | strtoul.c | 81 else if (isalpha(c)) in strtoul()
|
/freebsd/usr.bin/ctags/ |
H A D | yacc.c | 88 if (in_rule || (!isalpha(c) && c != '.' && c != '_')) in y_entries()
|
/freebsd/contrib/tcsh/ |
H A D | sh.char.h | 174 ((isalpha((c)) && !(cmap((c), _PUN))) \ 224 # define Isalpha(c) (((Char)(c) & QUOTE) ? 0 : isalpha((tcshuc) (c))) 265 # define Isalpha(c) (((Char)(c) & QUOTE) ? 0 : isalpha( oem_it((tcshuc)(c))))
|