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

/device/linaro/bootloader/arm-trusted-firmware/include/stdlib/sys/
H A Dctype.h48 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
49 #define isalpha(c) (isupper(c) || islower(c))
/device/linaro/bootloader/edk2/StdLib/Include/
H A Dctype.h45 /** The isalpha function tests for any character for which isupper or islower
49 characters for which isupper or islower is true.
96 /** The islower function tests for any character that is a lowercase letter or
98 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
106 int islower(int c);
195 the current locale, for which islower is true, the tolower
207 @return If the argument is a character for which islower is true and
229 #define islower(c) (__isCClass( (int)c, (_CL))) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dbytes_methods.h47 #undef islower macro
48 #define islower(c) undefined_islower(c) macro
H A Dpyport.h722 #undef islower macro
723 #define islower(c) iswlower(btowc(c)) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dbytes_methods.h47 #undef islower macro
48 #define islower(c) undefined_islower(c) macro
H A Dpyport.h699 #undef islower macro
700 #define islower(c) iswlower(btowc(c)) macro
/device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
H A DCClass.c55 /** The isalpha function tests for any character for which isupper or islower
59 characters for which isupper or islower is true.
119 /** The islower function tests for any character that is a lowercase letter or
121 isdigit, ispunct, or isspace is true. In the "C" locale, islower returns
130 islower( function
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
H A Dpyport.h699 #undef islower macro
700 #define islower(c) iswlower(btowc(c)) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
H A Dpyport.h738 #undef islower macro
739 #define islower(c) iswlower(btowc(c)) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DUserString.py95 def islower(self): return self.data.islower() member in class:UserString

Completed in 111 milliseconds