HomeSort by relevance Sort by last modified time
    Searched refs:_M_ptr (Results 1 - 10 of 10) sorted by null

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/backward/
auto_ptr.h 48 _Tp1* _M_ptr;
51 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { }
88 _Tp* _M_ptr;
101 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
110 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { }
123 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { }
168 ~auto_ptr() { delete _M_ptr; }
181 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0);
182 return *_M_ptr;
194 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0)
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
shared_ptr.h 71 : _M_ptr(__p), _M_del(__d) { }
75 { _M_del(_M_ptr); }
85 _Ptr _M_ptr; // copy constructor must not throw
366 : _M_ptr(0), _M_refcount() // never throws
377 : _M_ptr(__p), _M_refcount(__p)
399 : _M_ptr(__p), _M_refcount(__p, __d)
416 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throws
432 // It is now safe to copy __r._M_ptr, as _M_refcount(__r._M_refcount)
434 _M_ptr = __r._M_ptr
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
shared_ptr.h 74 : _M_ptr(__p) { }
78 { delete _M_ptr; }
92 _Ptr _M_ptr; // copy constructor must not throw
134 { _M_del._M_del(_Base_type::_M_ptr); }
176 _Base_type::_Base_type::_M_ptr = static_cast<_Tp*>(__p);
186 _Base_type::_Base_type::_M_ptr = static_cast<_Tp*>(__p);
557 : _M_ptr(0), _M_refcount() // never throws
568 : _M_ptr(__p), _M_refcount(__p)
590 : _M_ptr(__p), _M_refcount(__p, __d)
614 : _M_ptr(__p), _M_refcount(__p, __d, __a
    [all...]
stl_function.h 420 _Result (*_M_ptr)(_Arg);
427 : _M_ptr(__x) { }
431 { return _M_ptr(__x); }
446 _Result (*_M_ptr)(_Arg1, _Arg2);
453 : _M_ptr(__x) { }
457 { return _M_ptr(__x, __y); }
  /external/stlport/stlport/stl/
_function_adaptors.h 582 _Result (*_M_ptr)(_Arg);
585 explicit pointer_to_unary_function(_Result (*__x)(_Arg)) : _M_ptr(__x) {}
586 _Result operator()(_Arg __x) const { return _M_ptr(__x); }
593 _Result (*_M_ptr)(_Arg1, _Arg2);
597 : _M_ptr(__x) {}
599 return _M_ptr(__x, __y);
691 __fun_type _M_ptr;
694 explicit pointer_to_unary_function(__fun_type __x) : _M_ptr(__x) {}
695 void operator()(_Arg __x) const { _M_ptr(__x); }
701 __fun_type _M_ptr;
    [all...]
_fstream.c 283 _CharT* _M_ptr;
284 _Filebuf_Tmp_Buf(ptrdiff_t __n) : _M_ptr(0) { _M_ptr = new _CharT[__n]; }
285 ~_Filebuf_Tmp_Buf() { delete[] _M_ptr; }
352 _CharT* __ibegin = __buf._M_ptr;
_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/
_function_adaptors.h 582 _Result (*_M_ptr)(_Arg);
585 explicit pointer_to_unary_function(_Result (*__x)(_Arg)) : _M_ptr(__x) {}
586 _Result operator()(_Arg __x) const { return _M_ptr(__x); }
593 _Result (*_M_ptr)(_Arg1, _Arg2);
597 : _M_ptr(__x) {}
599 return _M_ptr(__x, __y);
691 __fun_type _M_ptr;
694 explicit pointer_to_unary_function(__fun_type __x) : _M_ptr(__x) {}
695 void operator()(_Arg __x) const { _M_ptr(__x); }
701 __fun_type _M_ptr;
    [all...]
_fstream.c 283 _CharT* _M_ptr;
284 _Filebuf_Tmp_Buf(ptrdiff_t __n) : _M_ptr(0) { _M_ptr = new _CharT[__n]; }
285 ~_Filebuf_Tmp_Buf() { delete[] _M_ptr; }
352 _CharT* __ibegin = __buf._M_ptr;
_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 847 milliseconds