Searched refs:islower (Results 1 - 25 of 36) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dctype.h12 #define islower(c) ((c) >= 'a' && (c) <= 'z') macro
25 if (islower(c))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Ctype/
H A DCConv.c7 specified by the current locale, for which islower is true, the tolower
12 uppercase letter. If the argument is a character for which islower is true
39 the current locale, for which islower is true, the tolower
57 @return If the argument is a character for which islower is true and
69 return (islower(_c) ? _uConvT[_c] : _c);
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
/vbox/src/VBox/Devices/EFI/Firmware/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
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dnsap_addr.c54 if (islower(c))
H A Dns_ttl.c148 if (islower(ch))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/NetUtil/
H A Dinet_network.c92 val = (val << 4) + (c + 10 - (islower(c) ? 'a' : 'A'));
H A Dinet_addr.c165 (c + 10 - (islower((unsigned char)c) ? 'a' : 'A'));
/vbox/src/VBox/Devices/Network/lwip-new/src/core/ipv4/
H A Dip4_addr.c118 #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-new/src/core/ipv6/
H A Dip6_addr.c58 #define islower(c) in_range(c, 'a', 'z') macro
126 10 + (islower(*s) ? *s - 'a' : *s - 'A'));
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dctype.h45 int __cdecl islower(int);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dctype.h55 int __cdecl islower(int);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Ddlg_p.g341 if (case_insensitive && islower(i_prime))
351 $$.letter = (islower(i_prime) ?
354 $2.letter = (islower(i_prime) ?
369 if (case_insensitive && islower(i_prime))
384 if (case_insensitive && islower(i_prime))
H A Ddlg_p.c611 if (case_insensitive && islower(i_prime))
626 zzaRet.letter = (islower(i_prime) ?
629 zzaArg(zztasp2,2 ).letter = (islower(i_prime) ?
644 if (case_insensitive && islower(i_prime))
684 if (case_insensitive && islower(i_prime))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A Diswctype_sb.c104 return islower((int)c);
/vbox/src/VBox/ValidationKit/common/
H A Dwebutils.py125 if len(sSchema) >= 2 and len(sSchema) < 16 and sSchema.islower() and sSchema.isalpha():
/vbox/src/VBox/Devices/Network/lwip/src/core/
H A Dinet.c340 #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 Dpyport.h686 #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 Dpyport.h699 #undef islower macro
700 #define islower(c) iswlower(btowc(c)) macro
/vbox/src/libs/xpcom18a4/xpcom/obsolete/
H A DnsSpecialSystemDirectory.cpp201 if (islower(aPath[i]))
212 if ( islower(aPath[i]))
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Duri.c418 int ok = ( isupper ( c ) || islower ( c ) || isdigit ( c ) ||
/vbox/src/libs/libxml2-2.6.31/
H A Dtrio.c171 # define iswlower(x) islower(x)
5348 if (islower(i))
/vbox/src/recompiler/
H A Dqemu-common.h198 #define qemu_islower(c) islower((unsigned char)(c))
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dtchar.h96 #define _istlower WINE_tchar_routine(islower, _ismbcslower,iswlower)
/vbox/src/VBox/Runtime/testcase/
H A DtstRTCType.cpp216 TEST_X(ch, islower, X_LOWER);

Completed in 2009 milliseconds

12