/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | modernize-use-uncaught-exceptions.cpp | 3 #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/ |
D | modernize-use-uncaught-exceptions.rst | 6 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/ |
D | uncaught_exception.pass.cpp | 20 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/ |
D | uncaught_exception.pass.cpp | 21 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/ |
D | exception_fallback.ipp | 79 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; } 83 #warning uncaught_exception not yet implemented
|
D | exception_libcxxabi.ipp | 17 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
|
D | exception_msvc.ipp | 80 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
|
/external/llvm-project/libcxx/src/support/runtime/ |
D | exception_fallback.ipp | 75 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; } 79 #warning uncaught_exception not yet implemented
|
D | exception_libcxxabi.ipp | 16 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
|
D | exception_msvc.ipp | 79 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
|
/external/catch2/include/internal/ |
D | catch_uncaught_exceptions.cpp | 18 return std::uncaught_exception(); in uncaught_exceptions()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/test/ |
D | test.cpp | 4 inline bool uncaught_exception() noexcept(true) { in uncaught_exception() function
|
D | test.h | 4 inline bool uncaught_exception() noexcept(true) { in uncaught_exception() function
|
/external/libcxx/test/support/ |
D | rapid-cxx-test.hpp | 480 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/ |
D | rapid-cxx-test.h | 480 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/ |
D | exception | 50 bool uncaught_exception() noexcept; 132 _LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
|
D | ostream | 278 && !uncaught_exception())
|
/external/libcxx/include/ |
D | exception | 51 bool uncaught_exception() noexcept; 130 _LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
|
D | ostream | 275 && !uncaught_exception())
|
/external/catch2/docs/ |
D | limitations.md | 154 …`libc++` and `libstdc++` (or their runtimes) have a bug with `std::uncaught_exception()` getting s…
|
D | configuration.md | 130 …ONFIG_CPP17_UNCAUGHT_EXCEPTIONS // Use std::uncaught_exceptions instead of std::uncaught_exception
|
D | release-notes.md | 637 * 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/ |
D | CHANGELOG.TXT | 135 for std::uncaught_exception and std::uncaught_exceptions haven't changed,
|
/external/llvm-project/libcxx/lib/abi/ |
D | CHANGELOG.TXT | 757 for std::uncaught_exception and std::uncaught_exceptions haven't changed,
|
/external/bcc/tests/cc/ |
D | catch.hpp | 7856 if( std::uncaught_exception() ) in ~Section()
|