Home
last modified time | relevance | path

Searched defs:isalpha (Results 1 – 17 of 17) sorted by relevance

/third_party/musl/src/ctype/
Disalpha.c4 int isalpha(int c) in isalpha() function
/third_party/musl/porting/liteos_a/kernel/src/ctype/
Disalpha.c4 int isalpha(int c) in isalpha() function
/third_party/musl/include/
Dctype.h31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/musl/porting/linux/user/include/
Dctype.h31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/musl/porting/liteos_a/kernel/include/
Dctype.h31 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dctype.h35 #define isalpha(a) (0 ? isalpha(a) : (((unsigned)(a)|32)-'a') < 26) macro
/third_party/boost/boost/spirit/home/support/char_encoding/
Dstandard.hpp64 isalpha(int ch) in isalpha() function
Dunicode.hpp51 isalpha(char_type ch) in isalpha() function
Diso8859_1.hpp609 isalpha(int ch) in isalpha() function
Dascii.hpp221 isalpha(int ch) in isalpha() function
Dstandard_wide.hpp86 isalpha(wchar_t ch) in isalpha() function
/third_party/uboot/u-boot-2020.01/include/linux/
Dctype.h23 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) macro
/third_party/python/Lib/curses/
Dascii.py55 def isalpha(c): return isupper(c) or islower(c) function
/third_party/bounds_checking_function/src/
Dsecinput.h158 #define isalpha(c) (isupper(c) || (islower(c))) macro
/third_party/python/Include/
Dpyport.h623 #define isalpha(c) iswalpha(btowc(c)) macro
/third_party/boost/libs/python/src/
Dstr.cpp240 bool str_base::isalpha() const in isalpha() function in boost::python::detail::str_base
/third_party/python/Lib/collections/
D__init__.py1403 def isalpha(self): member in UserString