Home
last modified time | relevance | path

Searched refs:isupper (Results 1 – 25 of 40) sorted by relevance

12

/device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
Dctype.h47 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro
49 #define isalpha(c) (isupper(c) || islower(c))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/
DStrings.py481 s.isupper()
489 s.isupper()
497 s.isupper()
505 s.isupper()
513 s.isupper()
521 s.isupper()
529 s.isupper()
537 s.isupper()
545 s.isupper()
553 s.isupper()
DUnicode.py404 s.isupper()
414 s.isupper()
424 s.isupper()
434 s.isupper()
444 s.isupper()
/device/linaro/bootloader/edk2/StdLib/Include/
Dctype.h153 int isupper(int c);
233 #define isupper(c) (__isCClass( (int)c, (_CU))) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dbuffer_tests.py27 self.assertFalse(self.marshal(b'').isupper())
28 self.assertFalse(self.marshal(b'a').isupper())
29 self.assertTrue(self.marshal(b'A').isupper())
30 self.assertFalse(self.marshal(b'\n').isupper())
31 self.assertTrue(self.marshal(b'ABC').isupper())
32 self.assertFalse(self.marshal(b'AbC').isupper())
33 self.assertTrue(self.marshal(b'ABC\n').isupper())
34 self.assertRaises(TypeError, self.marshal(b'abc').isupper, 42)
Dtest_errno.py30 if attribute.isupper():
Dtest_bool.py221 self.assertIs("XYZ".isupper(), True)
222 self.assertIs("xyz".isupper(), False)
245 self.assertIs(unicode("XYZ", 'ascii').isupper(), True)
246 self.assertIs(unicode("xyz", 'ascii').isupper(), False)
Dtest_unicodedata.py39 u"01"[char.isupper()],
50 u"01"[(char + u'ABC').isupper()],
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dbytes_methods.h49 #undef isupper
50 #define isupper(c) undefined_isupper(c) macro
Dpyport.h703 #undef isupper
704 #define isupper(c) iswupper(btowc(c)) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dbytes_methods.h49 #undef isupper
50 #define isupper(c) undefined_isupper(c) macro
Dpyport.h726 #undef isupper
727 #define isupper(c) iswupper(btowc(c)) macro
/device/linaro/bootloader/edk2/StdLib/LibC/Ctype/
DCConv.c49 return (isupper(_c) ? _lConvT[_c] : _c); in tolower()
DCClass.c201 isupper( in isupper() function
/device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Dstrtoimax.c133 c -= isupper(c) ? 'A' - 10 : 'a' - 10; in __weak_alias()
Dstrtoumax.c112 c -= isupper(c) ? 'A' - 10 : 'a' - 10; in __weak_alias()
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dns_ttl.c117 if (isascii(ch) && isupper(ch)) in ns_format_ttl()
Dinet_net_pton.c156 if (isupper(ch)) in inet_net_pton_ipv4()
/device/linaro/bootloader/edk2/StdLib/LibC/Locale/
Diswctype_sb.c132 return isupper((int)c); in iswupper()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
Dpyport.h703 #undef isupper
704 #define isupper(c) iswupper(btowc(c)) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/cgi/
Dwiki.py90 if chars and c.isupper():
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
Dpyport.h742 #undef isupper
743 #define isupper(c) iswupper(btowc(c)) macro
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dstropmodule.c477 if (isupper(c)) { in strop_lower()
565 if (isupper(c)) { in strop_capitalize()
739 else if (isupper(c)) { in strop_swapcase()
1266 if (isupper(c)) in initstrop()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dstropmodule.c477 if (isupper(c)) { in strop_lower()
565 if (isupper(c)) { in strop_capitalize()
737 else if (isupper(c)) { in strop_swapcase()
1264 if (isupper(c)) in initstrop()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DUserString.py99 def isupper(self): return self.data.isupper() member in UserString

12