| /llvm-project-15.0.7/libcxx/test/std/localization/locales/locale.convenience/classification/ |
| H A 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 …]
|
| /llvm-project-15.0.7/libcxx/test/std/strings/c.strings/ |
| H A 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()
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.c.headers/ |
| H A 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()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | cctype | 29 int isupper(int c); 87 #ifdef isupper 88 #undef isupper 114 using ::isupper _LIBCPP_USING_IF_EXISTS;
|
| H A D | ctype.h | 52 #undef isupper
|
| /llvm-project-15.0.7/libc/src/ctype/ |
| H A D | isupper.cpp | 18 LLVM_LIBC_FUNCTION(int, isupper, (int c)) { 19 return static_cast<int>(internal::isupper(static_cast<unsigned>(c)));
|
| H A D | CMakeLists.txt | 102 isupper 104 isupper.cpp 106 isupper.h
|
| H A D | isupper.h | 14 int isupper(int c);
|
| H A D | tolower.cpp | 19 if (internal::isupper(c))
|
| /llvm-project-15.0.7/libc/test/src/ctype/ |
| H A D | isupper_test.cpp | 17 EXPECT_NE(__llvm_libc::isupper(ch), 0); in TEST() 19 EXPECT_EQ(__llvm_libc::isupper(ch), 0); in TEST()
|
| H A D | CMakeLists.txt | 114 isupper 120 libc.src.ctype.isupper
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | libbuiltins-ctype-x86_64.c | 13 int isupper(int); 40 (void)isupper(x); in test()
|
| H A D | libbuiltins-ctype-powerpc64.c | 13 int isupper(int); 40 (void)isupper(x); in test()
|
| /llvm-project-15.0.7/clang/test/Analysis/ |
| H A 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()
|
| /llvm-project-15.0.7/compiler-rt/test/sanitizer_common/TestCases/ |
| H A D | ctype.c | 35 i += !!isupper(c); in check_ctype() 56 i += !!isupper(EOF); in check_ctype()
|
| /llvm-project-15.0.7/llvm/test/CodeGen/X86/ |
| H A D | ragreedy-bug.ll | 4 ; 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 D | ReservedIdentifierCheck.cpp | 79 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 D | ctype_utils.h | 33 static constexpr bool isupper(unsigned ch) { return (ch - 'A') < 26; } in isupper() function
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AArch64/ |
| H A D | ragreedy-csr.ll | 64 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 D | MacroUsageCheck.cpp | 25 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.h | 63 return ::isupper(__c); in isupper_l()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | StringExtras.cpp | 102 if (!std::isupper(c)) { in convertToSnakeFromCamelCase()
|
| /llvm-project-15.0.7/clang-tools-extra/clang-include-fixer/ |
| H A D | FuzzySymbolIndex.cpp | 55 if (isupper(c)) in classify()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | unused-return-value.rst | 24 islower, isprint, ispunct, isspace, isupper, iswalnum, iswprint, iswspace,
|
| /llvm-project-15.0.7/libc/config/linux/arm/ |
| H A D | entrypoints.txt | 14 libc.src.ctype.isupper
|