/external/libcxx/test/std/localization/locales/locale.convenience/classification/ |
D | isupper.pass.cpp | 20 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/llvm-project/libcxx/test/std/localization/locales/locale.convenience/classification/ |
D | isupper.pass.cpp | 21 assert(!std::isupper(' ', l)); in main() 22 assert(!std::isupper('<', l)); in main() 23 assert(!std::isupper('\x8', l)); in main() 24 assert( std::isupper('A', l)); in main() 25 assert(!std::isupper('a', l)); in main() 26 assert(!std::isupper('z', l)); in main() 27 assert(!std::isupper('3', l)); in main() 28 assert(!std::isupper('.', l)); in main() 29 assert(!std::isupper('f', l)); in main() 30 assert(!std::isupper('9', l)); in main() [all …]
|
/external/openssh/openbsd-compat/ |
D | fnmatch.c | 228 (isupper((unsigned char)**string) || in fnmatch_ch() 229 isupper((unsigned char)*startch) || in fnmatch_ch() 230 isupper((unsigned char)**pattern)) && in fnmatch_ch() 244 else if (nocase && (isupper((unsigned char)**string) || in fnmatch_ch() 245 isupper((unsigned char)**pattern)) && in fnmatch_ch() 271 else if (nocase && (isupper((unsigned char)**string) || in fnmatch_ch() 272 isupper((unsigned char)**pattern)) && in fnmatch_ch()
|
/external/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 58 #ifdef isupper 59 #error isupper defined 87 ASSERT_SAME_TYPE(int, decltype(std::isupper(0))); in main() 102 assert(!std::isupper('a')); in main()
|
/external/llvm-project/libcxx/test/std/strings/c.strings/ |
D | cctype.pass.cpp | 57 #ifdef isupper 58 #error isupper defined 86 ASSERT_SAME_TYPE(int, decltype(std::isupper(0))); in main() 101 assert(!std::isupper('a')); in main()
|
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 57 #ifdef isupper 58 #error isupper defined 85 static_assert((std::is_same<decltype(isupper(0)), int>::value), ""); in main() 100 assert(!isupper('a')); in main()
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | ctype_h.pass.cpp | 56 #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/include/ |
D | cctype | 30 int isupper(int c); 87 #ifdef isupper 88 #undef isupper 114 using ::isupper;
|
/external/llvm-project/libcxx/include/ |
D | cctype | 29 int isupper(int c); 86 #ifdef isupper 87 #undef isupper 113 using ::isupper;
|
/external/python/cpython2/Tools/pybench/ |
D | Strings.py | 481 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()
|
/external/llvm-project/libc/src/ctype/ |
D | isupper.cpp | 18 int LLVM_LIBC_ENTRYPOINT(isupper)(int c) { return internal::isupper(c); } in LLVM_LIBC_ENTRYPOINT() argument
|
D | CMakeLists.txt | 100 isupper 102 isupper.cpp 104 isupper.h
|
/external/llvm-project/libc/test/src/ctype/ |
D | isupper_test.cpp | 17 EXPECT_NE(__llvm_libc::isupper(ch), 0); in TEST() 19 EXPECT_EQ(__llvm_libc::isupper(ch), 0); in TEST()
|
D | CMakeLists.txt | 104 isupper 110 libc.src.ctype.isupper
|
/external/iperf3/src/ |
D | units.c | 276 if (!isupper((int) inFormat)) in unit_snprintf() 304 if (isupper((int) inFormat)) in unit_snprintf() 323 if (!isupper((int) inFormat)) in unit_snprintf()
|
/external/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 13 int isupper(int); 40 (void)isupper(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 13 int isupper(int); 40 (void)isupper(x); in test()
|
/external/llvm-project/clang/test/Sema/ |
D | libbuiltins-ctype-x86_64.c | 13 int isupper(int); 40 (void)isupper(x); in test()
|
D | libbuiltins-ctype-powerpc64.c | 13 int isupper(int); 40 (void)isupper(x); in test()
|
/external/llvm-project/clang/test/Analysis/ |
D | std-c-library-functions.c | 207 int isupper(int); 209 if (isupper(x)) in test_isupper() 244 if (isxdigit(x) && isupper(x)) { in test_isxdigit()
|
/external/libtextclassifier/native/utils/i18n/ |
D | locale.cc | 55 if (!std::isupper(script[0])) { in CheckScript() 71 return std::isupper(region[0]) && std::isupper(region[1]); in CheckRegion()
|
/external/python/cpython3/Lib/curses/ |
D | ascii.py | 55 def isalpha(c): return isupper(c) or islower(c) 65 def isupper(c): return 65 <= _ctoi(c) <= 90 function
|
/external/python/cpython2/Lib/curses/ |
D | ascii.py | 55 def isalpha(c): return isupper(c) or islower(c) 65 def isupper(c): return 65 <= _ctoi(c) <= 90 function
|
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/ |
D | ctype.c | 35 i += !!isupper(c); in check_ctype() 56 i += !!isupper(EOF); in check_ctype()
|
/external/python/cpython2/Include/ |
D | bytes_methods.h | 49 #undef isupper 50 #define isupper(c) undefined_isupper(c) macro
|