Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dbytes_methods.h52 #define isalpha(c) undefined_isalpha(c) macro
Dpyport.h729 #define isalpha(c) iswalpha(btowc(c)) macro
/external/u-boot/include/linux/
Dctype.h23 #define isalpha(c) ((__ismask(c)&(_U|_L)) != 0) macro
/external/python/cpython2/Lib/curses/
Dascii.py55 def isalpha(c): return isupper(c) or islower(c) function
/external/python/cpython3/Lib/curses/
Dascii.py55 def isalpha(c): return isupper(c) or islower(c) function
/external/python/cpython3/Include/
Dpyport.h583 #define isalpha(c) iswalpha(btowc(c)) macro
/external/python/cpython2/Lib/
DUserString.py91 def isalpha(self): return self.data.isalpha() member in UserString
/external/python/cpython3/Lib/collections/
D__init__.py1228 def isalpha(self): return self.data.isalpha() member in UserString