Lines Matching refs:exception
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
14 exception synopsis
19 class exception
22 exception() noexcept;
23 exception(const exception&) noexcept;
24 exception& operator=(const exception&) noexcept;
25 virtual ~exception() noexcept;
30 : public exception
100 class _LIBCPP_EXCEPTION_ABI exception
103 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
104 _LIBCPP_INLINE_VISIBILITY exception(const exception&) _NOEXCEPT = default;
106 virtual ~exception() _NOEXCEPT;
111 : public exception