Home | History | Annotate | Download | only in backward

Lines Matching defs:_Tp1

45   template<typename _Tp1>
48 _Tp1* _M_ptr;
51 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { }
122 template<typename _Tp1>
123 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { }
150 template<typename _Tp1>
152 operator=(auto_ptr<_Tp1>& __a) throw()
272 template<typename _Tp1>
273 operator auto_ptr_ref<_Tp1>() throw()
274 { return auto_ptr_ref<_Tp1>(this->release()); }
276 template<typename _Tp1>
277 operator auto_ptr<_Tp1>() throw()
278 { return auto_ptr<_Tp1>(this->release()); }