Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/std/language.support/support.exception/uncaught/
H A Duncaught_exceptions.pass.cpp25 ~Uncaught() { assert(std::uncaught_exceptions() == d_); } in ~Uncaught()
33 assert(std::uncaught_exceptions() == d_); in ~Outer()
43 assert(std::uncaught_exceptions() == 0); in main()
48 assert(std::uncaught_exceptions() == 0); in main()
55 assert(std::uncaught_exceptions() == 0); in main()
58 assert(std::uncaught_exceptions() == 0); in main()
/llvm-project/clang-tools-extra/docs/clang-tidy/checks/modernize/
H A Duse-uncaught-exceptions.rst7 with calls to ``std::uncaught_exceptions``, since ``std::uncaught_exception``
59 res = std::uncaught_exceptions();
61 using std::uncaught_exceptions;
63 res = uncaught_exceptions();
/llvm-project/libcxx/src/support/runtime/
H A Dexception_libcxxabi.ipp16 bool uncaught_exception() noexcept { return uncaught_exceptions() > 0; }
18 int uncaught_exceptions() noexcept {
H A Dexception_fallback.ipp51 bool uncaught_exception() noexcept { return uncaught_exceptions() > 0; }
53 int uncaught_exceptions() noexcept {
55 __libcpp_verbose_abort("uncaught_exceptions not yet implemented\n");
H A Dexception_msvc.ipp59 bool uncaught_exception() noexcept { return uncaught_exceptions() > 0; }
61 int uncaught_exceptions() noexcept { return __uncaught_exceptions(); }
/llvm-project/clang-tools-extra/test/clang-tidy/checkers/modernize/
H A Duse-uncaught-exceptions.cpp15 int uncaught_exceptions() { in uncaught_exceptions() function
/llvm-project/libcxx/include/__exception/
H A Doperations.h34 _LIBCPP_EXPORTED_FROM_ABI int uncaught_exceptions() _NOEXCEPT;
/llvm-project/libcxx/modules/std/
H A Dexception.inc27 using std::uncaught_exceptions;
/llvm-project/libcxx/include/
H A Dexception51 int uncaught_exceptions() noexcept; // C++17
/llvm-project/libcxx/docs/Status/
H A DCxx17Papers.csv7 "`N4259 <https://wg21.link/N4259>`__","Wording for std::uncaught_exceptions","2014-11 (Urbana)","|Complete|","3.7","``std::uncaught_exception`` is deprecated since LLVM 20"
/llvm-project/libcxx/lib/abi/
H A DCHANGELOG.TXT973 * r333467 - Fix embarrasing typo in uncaught_exceptions.
977 for std::uncaught_exception and std::uncaught_exceptions haven't changed,
/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc3083 SYMBOL(uncaught_exceptions, std::, <exception>)