Searched defs:isalpha (Results 1 - 10 of 10) sorted by relevance

/external/libcxx/include/
H A Dctype.h18 int isalpha(int c);
44 #undef isalpha macro
/external/python/cpython2/Include/
H A Dbytes_methods.h51 #undef isalpha macro
52 #define isalpha(c) undefined_isalpha(c) macro
H A Dpyport.h728 #undef isalpha macro
729 #define isalpha(c) iswalpha(btowc(c)) macro
/external/syslinux/com32/include/
H A Dctype.h44 __ctype_inline int isalpha(int __c) function
/external/python/cpython2/Lib/curses/
H A Dascii.py54 def isalnum(c): return isalpha(c) or isdigit(c)
55 def isalpha(c): return isupper(c) or islower(c) function
/external/python/cpython3/Lib/curses/
H A Dascii.py54 def isalnum(c): return isalpha(c) or isdigit(c)
55 def isalpha(c): return isupper(c) or islower(c) function
/external/valgrind/coregrind/m_demangle/
H A Dsafe-ctype.h33 case, e.g. ISALPHA not isalpha. */
126 #undef isalpha macro
127 #define isalpha(c) do_not_use_isalpha_with_safe_ctype macro
/external/python/cpython2/Lib/
H A DUserString.py91 def isalpha(self): return self.data.isalpha() member in class:UserString
/external/python/cpython3/Include/
H A Dpyport.h569 #undef isalpha macro
570 #define isalpha(c) iswalpha(btowc(c)) macro
/external/python/cpython3/Lib/collections/
H A D__init__.py1196 def isalpha(self): return self.data.isalpha() member in class:UserString

Completed in 363 milliseconds