Searched refs:isupper (Results 1 - 25 of 31) sorted by relevance

12

/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dctype.h13 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro
18 if (isupper(c))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Ctype/
H A DCConv.c5 lowercase letter. If the argument is a character for which isupper
14 current locale, for which isupper is true, the toupper function returns one
37 @return If the argument is a character for which isupper is true and
49 return (isupper(_c) ? _lConvT[_c] : _c);
59 the current locale, for which isupper is true, the toupper
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.
190 /** The isupper function tests for any character that is an uppercase letter or
192 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
201 isupper( 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.
143 /** The isupper function tests for any character that is an uppercase letter or
145 isdigit, ispunct, or isspace is true. In the "C" locale, isupper returns
153 int isupper(int c);
193 @return If the argument is a character for which isupper is true and
209 the current locale, for which isupper is true, the toupper
233 #define isupper(c) (__isCClass( (int)c, (_CU))) macro
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/StdLib/
H A Dstrtoimax.c133 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
H A Dstrtoumax.c112 c -= isupper(c) ? 'A' - 10 : 'a' - 10;
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/msvcrt/
H A Dctype.h49 int __cdecl isupper(int);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/msvcrt/
H A Dctype.h59 int __cdecl isupper(int);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/BsdSocketLib/
H A Dinet_net_pton.c156 if (isupper(ch))
H A Dns_ttl.c121 if (isascii(ch) && isupper(ch))
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Locale/
H A Diswctype_sb.c132 return isupper((int)c);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Ddlg_p.g344 if (case_insensitive && isupper(i_prime))
372 if (case_insensitive && isupper(i_prime))
387 if (case_insensitive && isupper(i_prime))
H A Ddlg_p.c614 if (case_insensitive && isupper(i_prime))
647 if (case_insensitive && isupper(i_prime))
687 if (case_insensitive && isupper(i_prime))
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Include/
H A Dpyport.h690 #undef isupper macro
691 #define isupper(c) iswupper(btowc(c)) macro
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Include/
H A Dpyport.h703 #undef isupper macro
704 #define isupper(c) iswupper(btowc(c)) macro
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Include/
H A DOpenSslSupport.h157 int isupper (int);
/vbox/src/VBox/Devices/EFI/Firmware/CryptoPkg/Library/BaseCryptLib/SysCall/
H A DCrtWrapper.c194 int isupper (int c) function
/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.c175 # define iswupper(x) isupper(x)
5380 if (isupper(i))
/vbox/src/recompiler/
H A Dqemu-common.h202 #define qemu_isupper(c) isupper((unsigned char)(c))
/vbox/src/VBox/Main/glue/
H A Dvboxapi.py434 if sAttr[0].isupper() and (sAttr[1].isupper() or sAttr[1] == '_'):
1202 if sKey[0].isupper():
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dtchar.h100 #define _istupper WINE_tchar_routine(isupper, _ismbcupper, iswupper)
/vbox/src/VBox/Runtime/testcase/
H A DtstRTCType.cpp215 TEST_X(ch, isupper, X_UPPER);
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dtchar.h100 #define _istupper WINE_tchar_routine(isupper, _ismbcupper, iswupper)
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_libc.h325 #undef isupper macro
326 #define isupper(i) xf86isupper(i) macro

Completed in 154 milliseconds

12