Home
last modified time | relevance | path

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

12

/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-use-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()
64 doSomething(std::uncaught_exception); in warn()
[all …]
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
Dmodernize-use-uncaught-exceptions.rst6 This check will warn on calls to ``std::uncaught_exception`` and replace them
7 with calls to ``std::uncaught_exceptions``, since ``std::uncaught_exception``
15 #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
[all …]
/external/libcxx/test/std/language.support/support.exception/uncaught/
Duncaught_exception.pass.cpp20 assert(std::uncaught_exception()); in ~A()
29 assert(!std::uncaught_exception()); in B()
38 assert(!std::uncaught_exception()); in main()
43 assert(!std::uncaught_exception()); in main()
45 assert(!std::uncaught_exception()); in main()
/external/llvm-project/libcxx/test/std/language.support/support.exception/uncaught/
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()
/external/libcxx/src/support/runtime/
Dexception_fallback.ipp79 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
83 #warning uncaught_exception not yet implemented
Dexception_libcxxabi.ipp17 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
Dexception_msvc.ipp80 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
/external/llvm-project/libcxx/src/support/runtime/
Dexception_fallback.ipp75 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
79 #warning uncaught_exception not yet implemented
Dexception_libcxxabi.ipp16 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
Dexception_msvc.ipp79 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
/external/catch2/include/internal/
Dcatch_uncaught_exceptions.cpp18 return std::uncaught_exception(); in uncaught_exceptions()
/external/Reactive-Extensions/RxCpp/Rx/v2/test/
Dtest.cpp4 inline bool uncaught_exception() noexcept(true) { in uncaught_exception() function
Dtest.h4 inline bool uncaught_exception() noexcept(true) { in uncaught_exception() function
/external/libcxx/test/support/
Drapid-cxx-test.hpp480 uncaught_exception enumerator
692 case failure_type::uncaught_exception: in report()
817 o.type = failure_type::uncaught_exception; in run()
/external/llvm-project/libcxx/test/support/
Drapid-cxx-test.h480 uncaught_exception enumerator
692 case failure_type::uncaught_exception: in report()
817 o.type = failure_type::uncaught_exception; in run()
/external/llvm-project/libcxx/include/
Dexception50 bool uncaught_exception() noexcept;
132 _LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
Dostream278 && !uncaught_exception())
/external/libcxx/include/
Dexception51 bool uncaught_exception() noexcept;
130 _LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
Dostream275 && !uncaught_exception())
/external/catch2/docs/
Dlimitations.md154 …`libc++` and `libstdc++` (or their runtimes) have a bug with `std::uncaught_exception()` getting s…
Dconfiguration.md130 …ONFIG_CPP17_UNCAUGHT_EXCEPTIONS // Use std::uncaught_exceptions instead of std::uncaught_exception
Drelease-notes.md637 * Fixed `std::uncaught_exception` deprecation warning (#1124)
727 * Implemented a workaround for `std::uncaught_exception` issues in libcxxrt
817 …996 warning caused by upcoming updated to MSVC 2017, marking `std::uncaught_exception` as deprecat…
/external/libcxx/lib/abi/
DCHANGELOG.TXT135 for std::uncaught_exception and std::uncaught_exceptions haven't changed,
/external/llvm-project/libcxx/lib/abi/
DCHANGELOG.TXT757 for std::uncaught_exception and std::uncaught_exceptions haven't changed,
/external/bcc/tests/cc/
Dcatch.hpp7856 if( std::uncaught_exception() ) in ~Section()

12