HomeSort by relevance Sort by last modified time
    Searched defs:_M_ptr (Results 51 - 64 of 64) sorted by null

1 23

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
shared_ptr_base.h 289 : _M_ptr(__p) { }
293 { delete _M_ptr; }
307 _Ptr _M_ptr; // copy constructor must not throw
343 : _M_ptr(__p), _M_del(__d, _Alloc()) { }
347 : _M_ptr(__p), _M_del(__d, __a) { }
351 { _M_del._M_del(_M_ptr); }
372 _Ptr _M_ptr; // copy constructor must not throw
401 _Base_type::_M_ptr = static_cast<_Tp*>(__p);
411 _Base_type::_M_ptr = static_cast<_Tp*>(__p);
757 : _M_ptr(0), _M_refcount() // never throw
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
shared_ptr.h 260 : _M_ptr(__p), _M_del(__d) { }
264 { _M_del(_M_ptr); }
280 _Ptr _M_ptr; // copy constructor must not throw
554 : _M_ptr(0), _M_refcount() // never throws
560 : _M_ptr(__p), _M_refcount(__p)
569 : _M_ptr(__p), _M_refcount(__p, __d)
580 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throws
589 // It is now safe to copy __r._M_ptr, as _M_refcount(__r._M_refcount)
591 _M_ptr = __r._M_ptr
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
shared_ptr.h 260 : _M_ptr(__p), _M_del(__d) { }
264 { _M_del(_M_ptr); }
280 _Ptr _M_ptr; // copy constructor must not throw
554 : _M_ptr(0), _M_refcount() // never throws
560 : _M_ptr(__p), _M_refcount(__p)
569 : _M_ptr(__p), _M_refcount(__p, __d)
580 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throws
589 // It is now safe to copy __r._M_ptr, as _M_refcount(__r._M_refcount)
591 _M_ptr = __r._M_ptr
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
shared_ptr_base.h 289 : _M_ptr(__p) { }
293 { delete _M_ptr; }
307 _Ptr _M_ptr; // copy constructor must not throw
343 : _M_ptr(__p), _M_del(__d, _Alloc()) { }
347 : _M_ptr(__p), _M_del(__d, __a) { }
351 { _M_del._M_del(_M_ptr); }
372 _Ptr _M_ptr; // copy constructor must not throw
401 _Base_type::_M_ptr = static_cast<_Tp*>(__p);
411 _Base_type::_M_ptr = static_cast<_Tp*>(__p);
757 : _M_ptr(0), _M_refcount() // never throw
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
shared_ptr.h 260 : _M_ptr(__p), _M_del(__d) { }
264 { _M_del(_M_ptr); }
280 _Ptr _M_ptr; // copy constructor must not throw
554 : _M_ptr(0), _M_refcount() // never throws
560 : _M_ptr(__p), _M_refcount(__p)
569 : _M_ptr(__p), _M_refcount(__p, __d)
580 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throws
589 // It is now safe to copy __r._M_ptr, as _M_refcount(__r._M_refcount)
591 _M_ptr = __r._M_ptr
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
shared_ptr.h 260 : _M_ptr(__p), _M_del(__d) { }
264 { _M_del(_M_ptr); }
280 _Ptr _M_ptr; // copy constructor must not throw
554 : _M_ptr(0), _M_refcount() // never throws
560 : _M_ptr(__p), _M_refcount(__p)
569 : _M_ptr(__p), _M_refcount(__p, __d)
580 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throws
589 // It is now safe to copy __r._M_ptr, as _M_refcount(__r._M_refcount)
591 _M_ptr = __r._M_ptr
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/
shared_ptr.h 253 : _M_ptr(__p), _M_del(__d) { }
257 { _M_del(_M_ptr); }
273 _Ptr _M_ptr; // copy constructor must not throw
547 : _M_ptr(0), _M_refcount() // never throws
553 : _M_ptr(__p), _M_refcount(__p)
562 : _M_ptr(__p), _M_refcount(__p, __d)
573 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throws
582 // It is now safe to copy __r._M_ptr, as _M_refcount(__r._M_refcount)
584 _M_ptr = __r._M_ptr
    [all...]
  /external/stlport/stlport/stl/
_rope.h 626 _Rope_RopeRep<_CharT,_Alloc>* _M_ptr;
628 { _Rope_RopeRep<_CharT,_Alloc>::_S_unref(_M_ptr); }
630 _Rope_self_destruct_ptr() : _M_ptr(0) {}
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
635 _Rope_RopeRep<_CharT,_Alloc>& operator*() { return *_M_ptr; }
636 _Rope_RopeRep<_CharT,_Alloc>* operator->() { return _M_ptr; }
637 operator _Rope_RopeRep<_CharT,_Alloc>*() { return _M_ptr; }
640 { _M_ptr = __x; return *this; }
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_rope.h 626 _Rope_RopeRep<_CharT,_Alloc>* _M_ptr;
628 { _Rope_RopeRep<_CharT,_Alloc>::_S_unref(_M_ptr); }
630 _Rope_self_destruct_ptr() : _M_ptr(0) {}
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
635 _Rope_RopeRep<_CharT,_Alloc>& operator*() { return *_M_ptr; }
636 _Rope_RopeRep<_CharT,_Alloc>* operator->() { return _M_ptr; }
637 operator _Rope_RopeRep<_CharT,_Alloc>*() { return _M_ptr; }
640 { _M_ptr = __x; return *this; }
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_rope.h 626 _Rope_RopeRep<_CharT,_Alloc>* _M_ptr;
628 { _Rope_RopeRep<_CharT,_Alloc>::_S_unref(_M_ptr); }
630 _Rope_self_destruct_ptr() : _M_ptr(0) {}
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
635 _Rope_RopeRep<_CharT,_Alloc>& operator*() { return *_M_ptr; }
636 _Rope_RopeRep<_CharT,_Alloc>* operator->() { return _M_ptr; }
637 operator _Rope_RopeRep<_CharT,_Alloc>*() { return _M_ptr; }
640 { _M_ptr = __x; return *this; }
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_rope.h 626 _Rope_RopeRep<_CharT,_Alloc>* _M_ptr;
628 { _Rope_RopeRep<_CharT,_Alloc>::_S_unref(_M_ptr); }
630 _Rope_self_destruct_ptr() : _M_ptr(0) {}
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
635 _Rope_RopeRep<_CharT,_Alloc>& operator*() { return *_M_ptr; }
636 _Rope_RopeRep<_CharT,_Alloc>* operator->() { return _M_ptr; }
637 operator _Rope_RopeRep<_CharT,_Alloc>*() { return _M_ptr; }
640 { _M_ptr = __x; return *this; }
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_rope.h 626 _Rope_RopeRep<_CharT,_Alloc>* _M_ptr;
628 { _Rope_RopeRep<_CharT,_Alloc>::_S_unref(_M_ptr); }
630 _Rope_self_destruct_ptr() : _M_ptr(0) {}
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
635 _Rope_RopeRep<_CharT,_Alloc>& operator*() { return *_M_ptr; }
636 _Rope_RopeRep<_CharT,_Alloc>* operator->() { return _M_ptr; }
637 operator _Rope_RopeRep<_CharT,_Alloc>*() { return _M_ptr; }
640 { _M_ptr = __x; return *this; }
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_rope.h 626 _Rope_RopeRep<_CharT,_Alloc>* _M_ptr;
628 { _Rope_RopeRep<_CharT,_Alloc>::_S_unref(_M_ptr); }
630 _Rope_self_destruct_ptr() : _M_ptr(0) {}
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
635 _Rope_RopeRep<_CharT,_Alloc>& operator*() { return *_M_ptr; }
636 _Rope_RopeRep<_CharT,_Alloc>* operator->() { return _M_ptr; }
637 operator _Rope_RopeRep<_CharT,_Alloc>*() { return _M_ptr; }
640 { _M_ptr = __x; return *this; }
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_rope.h 626 _Rope_RopeRep<_CharT,_Alloc>* _M_ptr;
628 { _Rope_RopeRep<_CharT,_Alloc>::_S_unref(_M_ptr); }
630 _Rope_self_destruct_ptr() : _M_ptr(0) {}
634 _Rope_self_destruct_ptr(_Rope_RopeRep<_CharT,_Alloc>* __p) : _M_ptr(__p) {}
635 _Rope_RopeRep<_CharT,_Alloc>& operator*() { return *_M_ptr; }
636 _Rope_RopeRep<_CharT,_Alloc>* operator->() { return _M_ptr; }
637 operator _Rope_RopeRep<_CharT,_Alloc>*() { return _M_ptr; }
640 { _M_ptr = __x; return *this; }
    [all...]

Completed in 1039 milliseconds

1 23