/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/ |
auto_ptr.h | 50 _Tp1* _M_ptr; 53 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { } 90 _Tp* _M_ptr; 103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } 112 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { } 125 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { } 170 ~auto_ptr() { delete _M_ptr; } 183 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0); 184 return *_M_ptr; 196 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/ |
auto_ptr.h | 50 _Tp1* _M_ptr; 53 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { } 90 _Tp* _M_ptr; 103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } 112 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { } 125 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { } 170 ~auto_ptr() { delete _M_ptr; } 183 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0); 184 return *_M_ptr; 196 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/ |
auto_ptr.h | 50 _Tp1* _M_ptr; 53 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { } 90 _Tp* _M_ptr; 103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } 112 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { } 125 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { } 170 ~auto_ptr() { delete _M_ptr; } 183 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0); 184 return *_M_ptr; 196 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0) [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/ |
auto_ptr.h | 50 _Tp1* _M_ptr; 53 auto_ptr_ref(_Tp1* __p): _M_ptr(__p) { } 90 _Tp* _M_ptr; 103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } 112 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { } 125 auto_ptr(auto_ptr<_Tp1>& __a) throw() : _M_ptr(__a.release()) { } 170 ~auto_ptr() { delete _M_ptr; } 183 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0); 184 return *_M_ptr; 196 _GLIBCXX_DEBUG_ASSERT(_M_ptr != 0) [all...] |
/external/clang/test/Analysis/diagnostics/Inputs/include/ |
report-issues-within-main-file.h | 4 _Tp* _M_ptr; 6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } 7 ~auto_ptr() { delete _M_ptr; }
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/ |
aligned_buffer.h | 63 _M_ptr() noexcept 67 _M_ptr() const noexcept
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
shared_ptr_base.h | 369 : _M_ptr(__p) { } 373 { delete _M_ptr; } 387 _Ptr _M_ptr; 441 : _M_ptr(__p), _Del_base(__d), _Alloc_base(__a) 447 _Ptr _M_ptr; 463 { _M_impl._M_del()(_M_impl._M_ptr); } 515 allocator_traits<_Alloc>::construct(__a, _M_ptr(), 524 allocator_traits<_Alloc>::destroy(_M_impl._M_alloc(), _M_ptr()); 544 return const_cast<typename remove_cv<_Tp>::type*>(_M_ptr()); 550 _Tp* _M_ptr() noexcept { return _M_impl._M_storage._M_ptr(); [all...] |
nested_exception.h | 57 exception_ptr _M_ptr; 60 nested_exception() noexcept : _M_ptr(current_exception()) { } 70 { rethrow_exception(_M_ptr); } 74 { return _M_ptr; }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
shared_ptr_base.h | 286 : _M_ptr(__p) { } 290 { delete _M_ptr; } 304 _Ptr _M_ptr; // copy constructor must not throw 337 : _M_ptr(__p), _M_del(__d, _Alloc()) { } 341 : _M_ptr(__p), _M_del(__d, __a) { } 347 { _M_del._M_del(_M_ptr); } 370 _Ptr _M_ptr; // copy constructor must not throw 387 _Impl(_Alloc __a) : _Alloc(__a), _M_ptr() { } 388 _Tp* _M_ptr; 396 _M_impl._M_ptr = static_cast<_Tp*>(static_cast<void*>(&_M_storage)) [all...] |
nested_exception.h | 57 exception_ptr _M_ptr; 60 nested_exception() noexcept : _M_ptr(current_exception()) { } 70 { rethrow_exception(_M_ptr); } 74 { return _M_ptr; }
|
stl_function.h | 425 _Result (*_M_ptr)(_Arg); 432 : _M_ptr(__x) { } 436 { return _M_ptr(__x); } 451 _Result (*_M_ptr)(_Arg1, _Arg2); 458 : _M_ptr(__x) { } 462 { return _M_ptr(__x, __y); }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
shared_ptr_base.h | 286 : _M_ptr(__p) { } 290 { delete _M_ptr; } 304 _Ptr _M_ptr; // copy constructor must not throw 337 : _M_ptr(__p), _M_del(__d, _Alloc()) { } 341 : _M_ptr(__p), _M_del(__d, __a) { } 347 { _M_del._M_del(_M_ptr); } 370 _Ptr _M_ptr; // copy constructor must not throw 387 _Impl(_Alloc __a) : _Alloc(__a), _M_ptr() { } 388 _Tp* _M_ptr; 396 _M_impl._M_ptr = static_cast<_Tp*>(static_cast<void*>(&_M_storage)) [all...] |
nested_exception.h | 57 exception_ptr _M_ptr; 60 nested_exception() noexcept : _M_ptr(current_exception()) { } 70 { rethrow_exception(_M_ptr); } 74 { return _M_ptr; }
|
stl_function.h | 425 _Result (*_M_ptr)(_Arg); 432 : _M_ptr(__x) { } 436 { return _M_ptr(__x); } 451 _Result (*_M_ptr)(_Arg1, _Arg2); 458 : _M_ptr(__x) { } 462 { return _M_ptr(__x, __y); }
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
shared_ptr_base.h | 286 : _M_ptr(__p) { } 290 { delete _M_ptr; } 304 _Ptr _M_ptr; // copy constructor must not throw 337 : _M_ptr(__p), _M_del(__d, _Alloc()) { } 341 : _M_ptr(__p), _M_del(__d, __a) { } 347 { _M_del._M_del(_M_ptr); } 370 _Ptr _M_ptr; // copy constructor must not throw 387 _Impl(_Alloc __a) : _Alloc(__a), _M_ptr() { } 388 _Tp* _M_ptr; 396 _M_impl._M_ptr = static_cast<_Tp*>(static_cast<void*>(&_M_storage)) [all...] |
nested_exception.h | 57 exception_ptr _M_ptr; 60 nested_exception() noexcept : _M_ptr(current_exception()) { } 70 { rethrow_exception(_M_ptr); } 74 { return _M_ptr; }
|
stl_function.h | 425 _Result (*_M_ptr)(_Arg); 432 : _M_ptr(__x) { } 436 { return _M_ptr(__x); } 451 _Result (*_M_ptr)(_Arg1, _Arg2); 458 : _M_ptr(__x) { } 462 { return _M_ptr(__x, __y); }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/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...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/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...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/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...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/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/clang/test/CodeGenCXX/ |
2010-07-23-DeclLoc.cpp | 15 _Tp* _M_ptr; 18 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
|
/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;
|
/prebuilts/ndk/current/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...] |