Home
last modified time | relevance | path

Searched refs:uncaught_exceptions (Results 1 – 12 of 12) sorted by relevance

/external/libcxx/test/std/language.support/support.exception/uncaught/
Duncaught_exceptions.pass.cpp28 ~Uncaught() { assert(std::uncaught_exceptions() == d_); } in ~Uncaught()
36 assert(std::uncaught_exceptions() == d_); in ~Outer()
46 assert(std::uncaught_exceptions() == 0); in main()
51 assert(std::uncaught_exceptions() == 0); in main()
58 assert(std::uncaught_exceptions() == 0); in main()
61 assert(std::uncaught_exceptions() == 0); in main()
/external/catch2/include/internal/
Dcatch_uncaught_exceptions.cpp14 bool uncaught_exceptions() { in uncaught_exceptions() function
16 return std::uncaught_exceptions() > 0; in uncaught_exceptions()
Dcatch_message.cpp63 if ( !uncaught_exceptions() && !m_moved ){ in ~ScopedMessage()
114 if ( !uncaught_exceptions() ){ in ~Capturer()
Dcatch_uncaught_exceptions.h12 bool uncaught_exceptions();
Dcatch_section.cpp25 if( uncaught_exceptions() ) in ~Section()
/external/libcxx/src/support/runtime/
Dexception_libcxxabi.ipp17 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
19 int uncaught_exceptions() _NOEXCEPT
Dexception_fallback.ipp79 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
81 int uncaught_exceptions() _NOEXCEPT
84 fprintf(stderr, "uncaught_exceptions not yet implemented\n");
Dexception_msvc.ipp80 bool uncaught_exception() _NOEXCEPT { return uncaught_exceptions() > 0; }
82 int uncaught_exceptions() _NOEXCEPT {
/external/libcxx/include/
Dexception52 int uncaught_exceptions() noexcept; // C++17
131 _LIBCPP_FUNC_VIS _LIBCPP_AVAILABILITY_UNCAUGHT_EXCEPTIONS int uncaught_exceptions() _NOEXCEPT;
/external/libcxx/lib/abi/
DCHANGELOG.TXT131 * r333467 - Fix embarrasing typo in uncaught_exceptions.
135 for std::uncaught_exception and std::uncaught_exceptions haven't changed,
/external/catch2/docs/
Dconfiguration.md129 …CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS // Use std::uncaught_exceptions instead of std::uncaught_e…
/external/catch2/single_include/catch2/
Dcatch.hpp9535 bool uncaught_exceptions();
9587 if ( !uncaught_exceptions() && !m_moved ){ in ~ScopedMessage()
9637 if ( !uncaught_exceptions() ){ in ~Capturer()
10744 if( uncaught_exceptions() ) in ~Section()
12627 bool uncaught_exceptions() { in uncaught_exceptions() function
12629 return std::uncaught_exceptions() > 0; in uncaught_exceptions()