Home
last modified time | relevance | path

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

123456

/external/libcxx/test/std/localization/locales/locale.convenience/classification/
Disupper.pass.cpp20 assert(!std::isupper(' ', l)); in main()
21 assert(!std::isupper('<', l)); in main()
22 assert(!std::isupper('\x8', l)); in main()
23 assert( std::isupper('A', l)); in main()
24 assert(!std::isupper('a', l)); in main()
25 assert(!std::isupper('z', l)); in main()
26 assert(!std::isupper('3', l)); in main()
27 assert(!std::isupper('.', l)); in main()
28 assert(!std::isupper('f', l)); in main()
29 assert(!std::isupper('9', l)); in main()
[all …]
/external/python/cpython3/Tools/pybench/
DStrings.py487 s.isupper()
495 s.isupper()
503 s.isupper()
511 s.isupper()
519 s.isupper()
527 s.isupper()
535 s.isupper()
543 s.isupper()
551 s.isupper()
559 s.isupper()
DUnicode.py403 s.isupper()
413 s.isupper()
423 s.isupper()
433 s.isupper()
443 s.isupper()
/external/python/cpython2/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()
/external/libcxx/test/std/depr/depr.c.headers/
Dctype_h.pass.cpp56 #ifdef isupper
57 #error isupper defined
84 static_assert((std::is_same<decltype(isupper(0)), int>::value), ""); in main()
99 assert(!isupper('a')); in main()
/external/libcxx/test/std/strings/c.strings/
Dcctype.pass.cpp56 #ifdef isupper
57 #error isupper defined
84 static_assert((std::is_same<decltype(std::isupper(0)), int>::value), ""); in main()
99 assert(!std::isupper('a')); in main()
/external/libcxx/include/
Dcctype30 int isupper(int c);
87 #ifdef isupper
88 #undef isupper
114 using ::isupper;
Dctype.h53 #undef isupper
/external/libtextclassifier/util/i18n/
Dlocale.cc45 if (!std::isupper(script[0])) { in CheckScript()
61 return std::isupper(region[0]) && std::isupper(region[1]); in CheckRegion()
/external/syslinux/gpxe/src/include/
Dctype.h13 #define isupper(c) ((c) >= 'A' && (c) <= 'Z') macro
17 if (isupper(c)) in tolower()
/external/clang/test/Sema/
Dlibbuiltins-ctype-powerpc64.c13 int isupper(int);
40 (void)isupper(x); in test()
Dlibbuiltins-ctype-x86_64.c13 int isupper(int);
40 (void)isupper(x); in test()
/external/llvm/test/CodeGen/X86/
Dragreedy-bug.ll4 ; We make sure register copies are not generated on isupper.exit blocks.
6 ; CHECK: isupper.exit
10 ; CHECK: isupper.exit
59 br label %isupper.exit
64 br label %isupper.exit
65 isupper.exit:
81 br label %isupper.exit223
86 br label %isupper.exit223
87 isupper.exit223:
/external/syslinux/com32/include/
Dctype.h95 __ctype_inline int isupper(int __c) in isupper() function
116 return isupper(__c) ? _tolower(__c) : __c; in tolower()
/external/python/cpython3/Lib/curses/
Dascii.py55 def isalpha(c): return isupper(c) or islower(c)
65 def isupper(c): return 65 <= _ctoi(c) <= 90 function
/external/python/cpython2/Include/
Dbytes_methods.h49 #undef isupper
50 #define isupper(c) undefined_isupper(c) macro
/external/python/cpython2/Lib/curses/
Dascii.py55 def isalpha(c): return isupper(c) or islower(c)
65 def isupper(c): return _ctoi(c) >= 65 and _ctoi(c) <= 90 function
/external/valgrind/coregrind/m_demangle/
Dsafe-ctype.h144 #undef isupper
145 #define isupper(c) do_not_use_isupper_with_safe_ctype macro
/external/python/cpython3/Lib/
Dsocket.py76 lambda C: C.isupper() and C.startswith('AF_'))
81 lambda C: C.isupper() and C.startswith('SOCK_'))
86 lambda C: C.isupper() and C.startswith('MSG_'))
91 lambda C: C.isupper() and C.startswith('AI_'))
/external/e2fsprogs/misc/
Dutil.c58 if (isupper (ch1)) in strcasecmp()
60 if (isupper (ch2)) in strcasecmp()
/external/llvm/test/CodeGen/AArch64/
Dragreedy-csr.ll64 br label %isupper.exit
69 br label %isupper.exit
70 isupper.exit:
86 br label %isupper.exit223
91 br label %isupper.exit223
92 isupper.exit223:
/external/python/cpython2/Lib/test/
Dtest_bool.py220 self.assertIs("XYZ".isupper(), True)
221 self.assertIs("xyz".isupper(), False)
244 self.assertIs(unicode("XYZ", 'ascii').isupper(), True)
245 self.assertIs(unicode("xyz", 'ascii').isupper(), False)
/external/e2fsprogs/intl/
Dlocalealias.c403 c1 = isupper (*p1) ? tolower (*p1) : *p1; in alias_compare()
404 c2 = isupper (*p2) ? tolower (*p2) : *p2; in alias_compare()
/external/libmojo/third_party/jinja2/
Ddefaults.py43 __all__ = tuple(x for x in locals().keys() if x.isupper())

123456