Lines Matching refs:nested_exception
59 class nested_exception
62 nested_exception() noexcept;
63 nested_exception(const nested_exception&) noexcept = default;
64 nested_exception& operator=(const nested_exception&) noexcept = default;
65 virtual ~nested_exception() = default;
236 // nested_exception
238 class _LIBCPP_EXCEPTION_ABI nested_exception
242 nested_exception() _NOEXCEPT;
243 // nested_exception(const nested_exception&) noexcept = default;
244 // nested_exception& operator=(const nested_exception&) noexcept = default;
245 virtual ~nested_exception() _NOEXCEPT;
255 public nested_exception
297 !is_base_of<nested_exception, _Up>::value &&
316 typename enable_if< __can_dynamic_cast<_Ep, nested_exception>::value>::type* = 0)
318 const nested_exception* __nep = dynamic_cast<const nested_exception*>(_VSTD::addressof(__e));
327 typename enable_if<!__can_dynamic_cast<_Ep, nested_exception>::value>::type* = 0)