Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dbytes_methods.h48 #define islower(c) undefined_islower(c) macro
Dpyport.h731 #define islower(c) iswlower(btowc(c)) macro
/external/u-boot/include/linux/
Dctype.h27 #define islower(c) ((__ismask(c)&(_L)) != 0) macro
/external/python/cpython2/Lib/curses/
Dascii.py61 def islower(c): return 97 <= _ctoi(c) <= 122 function
/external/python/cpython3/Lib/curses/
Dascii.py61 def islower(c): return 97 <= _ctoi(c) <= 122 function
/external/python/cpython3/Include/
Dpyport.h585 #define islower(c) iswlower(btowc(c)) macro
/external/python/cpython2/Lib/
DUserString.py95 def islower(self): return self.data.islower() member in UserString
/external/python/cpython3/Lib/collections/
D__init__.py1234 def islower(self): return self.data.islower() member in UserString