Home
last modified time | relevance | path

Searched refs:uncaught_exception (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-uncaught-exceptions.cpp3 #define MACRO std::uncaught_exception
6 bool uncaught_exception() { in uncaught_exception() function
11 bool uncaught_exception() { in uncaught_exception() function
35 uncaught_exception(); in no_warn()
38 doSomething(uncaught_exception); in no_warn()
44 std::uncaught_exception(); in warn()
48 using std::uncaught_exception; in warn()
52 uncaught_exception(); in warn()
56 bool b{uncaught_exception()}; in warn()
68 doSomething(uncaught_exception); in warn()
[all …]
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Duse-uncaught-exceptions.rst15 #define MACRO1 std::uncaught_exception
16 #define MACRO2 std::uncaught_exception
18 int uncaught_exception() {
25 res = uncaught_exception();
31 res = std::uncaught_exception();
34 using std::uncaught_exception;
37 res = uncaught_exception();
45 #define MACRO1 std::uncaught_exception
46 #define MACRO2 std::uncaught_exception
48 int uncaught_exception() {
[all …]
/llvm-project-15.0.7/libcxx/test/std/language.support/support.exception/uncaught/
H A Duncaught_exception.pass.cpp21 assert(std::uncaught_exception()); in ~A()
30 assert(!std::uncaught_exception()); in B()
39 assert(!std::uncaught_exception()); in main()
44 assert(!std::uncaught_exception()); in main()
46 assert(!std::uncaught_exception()); in main()
/llvm-project-15.0.7/libcxx/src/support/runtime/
H A Dexception_fallback.ipp73 bool uncaught_exception() noexcept { return uncaught_exceptions() > 0; }
77 #warning uncaught_exception not yet implemented
H A Dexception_libcxxabi.ipp16 bool uncaught_exception() noexcept { return uncaught_exceptions() > 0; }
H A Dexception_msvc.ipp79 bool uncaught_exception() noexcept { return uncaught_exceptions() > 0; }
/llvm-project-15.0.7/libcxx/test/support/
H A Drapid-cxx-test.h480 uncaught_exception enumerator
692 case failure_type::uncaught_exception: in report()
817 o.type = failure_type::uncaught_exception; in run()
/llvm-project-15.0.7/libcxx/include/
H A Dexception50 bool uncaught_exception() noexcept;
134 _LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
H A Dostream316 && !uncaught_exception())
/llvm-project-15.0.7/libcxx/lib/abi/
H A DCHANGELOG.TXT654 for std::uncaught_exception and std::uncaught_exceptions haven't changed,