Home
last modified time | relevance | path

Searched refs:isalpha (Results 1 – 25 of 206) sorted by relevance

123456789

/freebsd/contrib/llvm-project/libcxx/include/
H A Dcctype20 int isalpha(int c);
58 #ifdef isalpha
59 # undef isalpha
111 using ::isalpha _LIBCPP_USING_IF_EXISTS;
H A Dctype.h17 int isalpha(int c);
45 # undef isalpha
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DTGLexer.cpp150 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 Dcitrus_bcs_strtol.c51 #undef isalpha
52 #define isalpha(c) _bcs_isalpha(c) macro
H A Dcitrus_bcs_strtoul.c51 #undef isalpha
52 #define isalpha(c) _bcs_isalpha(c) macro
/freebsd/cddl/contrib/opensolaris/common/util/
H A Dstrtolctype.h49 #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 Dstrtolctype.h49 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
50 #define isalpha(ch) (isupper(ch) || islower(ch)) macro
/freebsd/include/
H A Dctype.h49 int isalpha(int);
88 #define isalpha(c) __sbistype((c), _CTYPE_A) macro
/freebsd/lib/libc/locale/
H A Disctype.c56 #undef isalpha
58 isalpha(int c) in isalpha() function
H A DMakefile.inc33 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 Dstrto.c122 else if (isascii(c) && isalpha(c))
228 else if (isascii(c) && isalpha(c))
/freebsd/contrib/mandoc/
H A Ddemandoc.c165 emit = isalpha((unsigned char)p[0]) && in pstring()
166 isalpha((unsigned char)p[1]); in pstring()
/freebsd/usr.bin/localedef/bootstrap/
H A Dctype.h47 int (isalpha)(int); variable
/freebsd/crypto/openssh/openbsd-compat/
H A Dcharclass.h17 { "alpha", isalpha },
H A Dstrtoull.c86 else if (isalpha(c)) in strtoull()
H A Dstrtoul.c84 else if (isalpha(c)) in strtoul()
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dctype.h34 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
/freebsd/contrib/byacc/
H A Dreader.c582 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 Dctype.h67 isalpha(int c) in isalpha() function
/freebsd/usr.bin/dtc/
H A Dutil.hh131 inline bool isalpha(char c) in isalpha() function
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcctype.inc12 using ::isalpha _LIBCPP_USING_IF_EXISTS;
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcctype.cppm
/freebsd/sys/libkern/
H A Dstrtoul.c81 else if (isalpha(c)) in strtoul()
/freebsd/usr.bin/ctags/
H A Dyacc.c88 if (in_rule || (!isalpha(c) && c != '.' && c != '_')) in y_entries()
/freebsd/contrib/tcsh/
H A Dsh.char.h174 ((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))))

123456789