Home
last modified time | relevance | path

Searched refs:auto_ptr_ref (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/
H A Dauto_ptr.h48 struct auto_ptr_ref in _GLIBCXX_VISIBILITY() struct
53 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { } in _GLIBCXX_VISIBILITY() argument
270 auto_ptr(auto_ptr_ref<element_type> __ref) throw() in _GLIBCXX_VISIBILITY()
274 operator=(auto_ptr_ref<element_type> __ref) throw() in _GLIBCXX_VISIBILITY()
285 operator auto_ptr_ref<_Tp1>() throw() in _GLIBCXX_VISIBILITY()
286 { return auto_ptr_ref<_Tp1>(this->release()); } in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/
H A Dauto_ptr.h48 struct auto_ptr_ref in _GLIBCXX_VISIBILITY() struct
53 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { } in _GLIBCXX_VISIBILITY() argument
266 auto_ptr(auto_ptr_ref<element_type> __ref) throw() in _GLIBCXX_VISIBILITY()
270 operator=(auto_ptr_ref<element_type> __ref) throw() in _GLIBCXX_VISIBILITY()
281 operator auto_ptr_ref<_Tp1>() throw() in _GLIBCXX_VISIBILITY()
282 { return auto_ptr_ref<_Tp1>(this->release()); } in _GLIBCXX_VISIBILITY()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/__memory/
H A Dauto_ptr.h25 struct _LIBCPP_DEPRECATED_IN_CXX11 auto_ptr_ref struct
46 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) _NOEXCEPT argument
67 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) _NOEXCEPT : __ptr_(__p.__ptr_) {} in auto_ptr()
68 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() _NOEXCEPT
69 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dmemory222 template <class Y> struct auto_ptr_ref {}; // deprecated in C++11, removed in C++17
235 auto_ptr& operator=(auto_ptr_ref<X> r) throw();
244 auto_ptr(auto_ptr_ref<X>) throw();
245 template<class Y> operator auto_ptr_ref<Y>() throw();
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/
H A DChangeLog-20003294 * bits/std_memory.h (auto_ptr_ref): Reworked and defined only if
3304 (auto_ptr::auto_ptr(auto_ptr_ref)): Initialize from __ref._M_release.
3306 Define nested auto_ptr_ref unless _GLIBCPP_RESOLVE_LIB_DEFECTS.
3307 Define operator=(auto_ptr_ref) if _GLIBCPP_RESOLVE_LIB_DEFECTS.
H A DChangeLog-20022260 (auto_ptr::operator auto_ptr_ref): Fix typo.
H A DChangeLog-20204061 * include/backward/auto_ptr.h (auto_ptr_ref, auto_ptr<void>):