Home
last modified time | relevance | path

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

123456789

/freebsd/contrib/llvm-project/libcxx/include/
H A Dcctype20 int isalpha(int c);
59 #ifdef isalpha
60 # undef isalpha
112 using ::isalpha _LIBCPP_USING_IF_EXISTS;
H A Dctype.h45 # undef isalpha
/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/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()
550 if (!isalpha(*CurPtr)) in LexExclaim()
554 while (isalpha(*CurPtr)) in LexExclaim()
914 if (*CurPtr != '_' && !isalpha(*CurPtr)) in prepLexMacroName()
918 while (isalpha(*CurPtr) || isdigit(*CurPtr) || *CurPtr == '_') in prepLexMacroName()
/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.inc34 ctype.3 digittoint.3 isalnum.3 isalpha.3 isascii.3 isblank.3 iscntrl.3 \
55 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/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 Dstrtoul.c84 else if (isalpha(c)) in strtoul()
H A Dstrtoull.c86 else if (isalpha(c)) in strtoull()
/freebsd/contrib/mandoc/
H A Ddemandoc.c154 emit = isalpha((unsigned char)p[0]) && in pstring()
155 isalpha((unsigned char)p[1]); in pstring()
/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dctype.h34 #define isalnum(ch) (isalpha(ch) || isdigit(ch))
/freebsd/sys/sys/
H A Dctype.h67 isalpha(int c) in isalpha() function
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcctype.inc12 using ::isalpha;
/freebsd/usr.bin/dtc/
H A Dutil.hh131 inline bool isalpha(char c) in isalpha() function
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcctype.inc12 using std::isalpha;
/freebsd/usr.bin/ctags/
H A Dyacc.c88 if (in_rule || (!isalpha(c) && c != '.' && c != '_')) in y_entries()
/freebsd/sys/libkern/
H A Dstrtoul.c81 else if (isalpha(c)) in strtoul()
H A Dstrtouq.c85 else if (isalpha(c)) in strtouq()
/freebsd/contrib/ntp/util/
H A Dtimetrim.c54 while (--argc && **++argv == '-' && isalpha((int)argv[0][1])) { in main()

123456789