Home | History | Annotate | Download | only in stl

Lines Matching refs:__r

37   auto_ptr_ref(__ptr_base& __r, _Tp* __p) : _M_r(__r), _M_p(__p) {  }
88 template<class _Tp1> auto_ptr(auto_ptr<_Tp1>& __r) _STLP_NOTHROW {
89 _Tp* __conversionCheck = __r.release();
93 template<class _Tp1> auto_ptr<_Tp>& operator=(auto_ptr<_Tp1>& __r) _STLP_NOTHROW {
94 _Tp* __conversionCheck = __r.release();
100 auto_ptr(_Self& __r) _STLP_NOTHROW { this->__set(__r.release()); }
102 _Self& operator=(_Self& __r) _STLP_NOTHROW {
103 reset(__r.release());
109 auto_ptr(auto_ptr_ref<_Tp> __r) _STLP_NOTHROW
110 { this->__set(__r.release()); }
112 _Self& operator=(auto_ptr_ref<_Tp> __r) _STLP_NOTHROW {
113 reset(__r.release());