Searched defs:islower (Results 1 - 13 of 13) sorted by relevance
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | ctype.h | 12 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro 25 if (islower(c))
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/ |
H A D | ctype.h | 45 /** 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
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Ctype/ |
H A D | CClass.c | 55 /** 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
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv6/ |
H A D | ip6_addr.c | 58 #define islower(c) in_range(c, 'a', 'z') macro 126 10 + (islower(*s) ? *s - 'a' : *s - 'A'));
|
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/ |
H A D | ip4_addr.c | 118 #define islower(c) in_range(c, 'a', 'z') macro 184 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A'));
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | inet.c | 340 #define islower(c) in_range(c, 'a', 'z') macro 399 val = (val << 4) | (int)(c + 10 - (islower(c) ? 'a' : 'A'));
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Include/ |
H A D | pyport.h | 686 #undef islower macro 687 #define islower(c) iswlower(btowc(c)) macro
|
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Include/ |
H A D | pyport.h | 699 #undef islower macro 700 #define islower(c) iswlower(btowc(c)) macro
|
/vbox/src/VBox/Additions/x11/x11include/4.3/programs/Xserver/hw/xfree86/os-support/ |
H A D | xf86_libc.h | 279 #undef islower macro 280 #define islower(i) xf86islower(i) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | xf86_libc.h | 317 #undef islower macro 318 #define islower(i) xf86islower(i) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | xf86_libc.h | 317 #undef islower macro 318 #define islower(i) xf86islower(i) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.1.0/ |
H A D | xf86_libc.h | 323 #undef islower macro 324 #define islower(i) xf86islower(i) macro
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/ |
H A D | xf86_libc.h | 323 #undef islower macro 324 #define islower(i) xf86islower(i) macro
|
Completed in 1368 milliseconds