Home
last modified time | relevance | path

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

12

/llvm-project-15.0.7/libcxx/test/std/localization/locales/locale.convenience/classification/
H A Disupper.pass.cpp21 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 …]
/llvm-project-15.0.7/libcxx/test/std/strings/c.strings/
H A Dcctype.pass.cpp57 #ifdef isupper
58 #error isupper defined
86 ASSERT_SAME_TYPE(int, decltype(std::isupper(0))); in main()
101 assert(!std::isupper('a')); in main()
/llvm-project-15.0.7/libcxx/test/std/depr/depr.c.headers/
H A Dctype_h.pass.cpp57 #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()
/llvm-project-15.0.7/libcxx/include/
H A Dcctype29 int isupper(int c);
87 #ifdef isupper
88 #undef isupper
114 using ::isupper _LIBCPP_USING_IF_EXISTS;
H A Dctype.h52 #undef isupper
/llvm-project-15.0.7/libc/src/ctype/
H A Disupper.cpp18 LLVM_LIBC_FUNCTION(int, isupper, (int c)) {
19 return static_cast<int>(internal::isupper(static_cast<unsigned>(c)));
H A DCMakeLists.txt102 isupper
104 isupper.cpp
106 isupper.h
H A Disupper.h14 int isupper(int c);
H A Dtolower.cpp19 if (internal::isupper(c))
/llvm-project-15.0.7/libc/test/src/ctype/
H A Disupper_test.cpp17 EXPECT_NE(__llvm_libc::isupper(ch), 0); in TEST()
19 EXPECT_EQ(__llvm_libc::isupper(ch), 0); in TEST()
H A DCMakeLists.txt114 isupper
120 libc.src.ctype.isupper
/llvm-project-15.0.7/clang/test/Sema/
H A Dlibbuiltins-ctype-x86_64.c13 int isupper(int);
40 (void)isupper(x); in test()
H A Dlibbuiltins-ctype-powerpc64.c13 int isupper(int);
40 (void)isupper(x); in test()
/llvm-project-15.0.7/clang/test/Analysis/
H A Dstd-c-library-functions.c207 int isupper(int);
209 if (isupper(x)) in test_isupper()
244 if (isxdigit(x) && isupper(x)) { in test_isxdigit()
/llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/
H A Dctype.c35 i += !!isupper(c); in check_ctype()
56 i += !!isupper(EOF); in check_ctype()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dragreedy-bug.ll4 ; We make sure register copies are not generated on isupper.exit blocks.
6 ; isupper.exit and isupper.exit223 get tail-duplicated into all their
75 br label %isupper.exit
80 br label %isupper.exit
81 isupper.exit:
97 br label %isupper.exit223
102 br label %isupper.exit223
103 isupper.exit223:
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/bugprone/
H A DReservedIdentifierCheck.cpp79 return Name.size() >= 2 && Name[0] == '_' && std::isupper(Name[1]); in startsWithUnderscoreCapital()
102 if (Name[0] == '_' || std::isupper(Name[0])) in getNonReservedFixup()
/llvm-project-15.0.7/libc/src/__support/
H A Dctype_utils.h33 static constexpr bool isupper(unsigned ch) { return (ch - 'A') < 26; } in isupper() function
/llvm-project-15.0.7/llvm/test/CodeGen/AArch64/
H A 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:
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/cppcoreguidelines/
H A DMacroUsageCheck.cpp25 return std::isupper(C) || std::isdigit(C) || C == '_'; in isCapsOnly()
/llvm-project-15.0.7/libcxx/include/__support/xlocale/
H A D__posix_l_fallback.h63 return ::isupper(__c); in isupper_l()
/llvm-project-15.0.7/llvm/lib/Support/
H A DStringExtras.cpp102 if (!std::isupper(c)) { in convertToSnakeFromCamelCase()
/llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/
H A DFuzzySymbolIndex.cpp55 if (isupper(c)) in classify()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/
H A Dunused-return-value.rst24 islower, isprint, ispunct, isspace, isupper, iswalnum, iswprint, iswspace,
/llvm-project-15.0.7/libc/config/linux/arm/
H A Dentrypoints.txt14 libc.src.ctype.isupper

12