Lines Matching defs:exception_ptr

1 // -*- C++ -*- Implement the members of exception_ptr.
32 #include <exception_ptr.h>
37 std::__exception_ptr::exception_ptr::exception_ptr() throw()
41 std::__exception_ptr::exception_ptr::exception_ptr(void* obj) throw()
45 std::__exception_ptr::exception_ptr::exception_ptr(__safe_bool) throw()
50 exception_ptr::exception_ptr(const exception_ptr& other) throw()
55 std::__exception_ptr::exception_ptr::~exception_ptr() throw()
59 std::__exception_ptr::exception_ptr&
61 exception_ptr::operator=(const exception_ptr& other) throw()
63 exception_ptr(other).swap(*this);
69 std::__exception_ptr::exception_ptr::_M_addref() throw()
81 std::__exception_ptr::exception_ptr::_M_release() throw()
100 std::__exception_ptr::exception_ptr::_M_get() const throw()
105 std::__exception_ptr::exception_ptr::_M_safe_bool_dummy() throw () { }
109 std::__exception_ptr::exception_ptr::swap(exception_ptr &other) throw()
119 std::__exception_ptr::exception_ptr::operator!() const throw()
124 std::__exception_ptr::exception_ptr::operator __safe_bool() const throw()
126 return _M_exception_object ? &exception_ptr::_M_safe_bool_dummy : 0;
131 std::__exception_ptr::exception_ptr::__cxa_exception_type() const throw()
138 bool std::__exception_ptr::operator==(const exception_ptr& lhs,
139 const exception_ptr& rhs) throw()
143 bool std::__exception_ptr::operator!=(const exception_ptr& lhs,
144 const exception_ptr& rhs) throw()
148 std::exception_ptr
155 return std::exception_ptr();
159 return std::exception_ptr();
161 return std::exception_ptr(
195 std::rethrow_exception(std::exception_ptr ep)