Searched defs:islower (Results 1 - 12 of 12) sorted by relevance

/external/syslinux/gpxe/src/include/
H A Dctype.h12 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
24 if (islower(c))
/external/libcxx/include/
H A Dctype.h23 int islower(int c);
49 #undef islower macro
/external/python/cpython2/Include/
H A Dbytes_methods.h47 #undef islower macro
48 #define islower(c) undefined_islower(c) macro
H A Dpyport.h730 #undef islower macro
731 #define islower(c) iswlower(btowc(c)) macro
/external/syslinux/com32/include/
H A Dctype.h75 __ctype_inline int islower(int __c) function
111 return islower(__c) ? _toupper(__c) : __c;
/external/syslinux/core/lwip/src/core/ipv4/
H A Dip_addr.c118 #define islower(c) in_range(c, 'a', 'z') macro
184 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A'));
/external/python/cpython2/Lib/curses/
H A Dascii.py55 def isalpha(c): return isupper(c) or islower(c)
61 def islower(c): return _ctoi(c) >= 97 and _ctoi(c) <= 122 function
/external/python/cpython3/Lib/curses/
H A Dascii.py55 def isalpha(c): return isupper(c) or islower(c)
61 def islower(c): return 97 <= _ctoi(c) <= 122 function
/external/valgrind/coregrind/m_demangle/
H A Dsafe-ctype.h136 #undef islower macro
137 #define islower(c) do_not_use_islower_with_safe_ctype macro
/external/python/cpython2/Lib/
H A DUserString.py95 def islower(self): return self.data.islower() member in class:UserString
/external/python/cpython3/Include/
H A Dpyport.h571 #undef islower macro
572 #define islower(c) iswlower(btowc(c)) macro
/external/python/cpython3/Lib/collections/
H A D__init__.py1201 def islower(self): return self.data.islower() member in class:UserString

Completed in 4429 milliseconds