| /external/harfbuzz_ng/src/ |
| D | hb-cplusplus.hh | 51 struct shared_ptr struct 53 using element_type = T; 55 using v = vtable<T>; 57 explicit shared_ptr (T *p = nullptr) : p (p) {} in shared_ptr() function 58 shared_ptr (const shared_ptr &o) : p (v::reference (o.p)) {} in shared_ptr() argument 59 shared_ptr (shared_ptr &&o) : p (o.p) { o.p = nullptr; } in shared_ptr() function 60 …ator = (const shared_ptr &o) { if (p != o.p) { destroy (); p = o.p; reference (); } return *this; } in operator =() 61 shared_ptr& operator = (shared_ptr &&o) { v::destroy (p); p = o.p; o.p = nullptr; return *this; } in operator =() 62 ~shared_ptr () { v::destroy (p); p = nullptr; } in ~shared_ptr() 64 T* get() const { return p; } in get() [all …]
|
| /external/sdv/vsomeip/third_party/boost/serialization/include/boost/serialization/detail/ |
| D | shared_ptr_132.hpp | 106 template<class T> class shared_ptr class 119 shared_ptr(): px(0), pn() // never throws in 1.30+ in shared_ptr() function in boost_132::shared_ptr 124 explicit shared_ptr(Y * p): px(p), pn(p, boost::checked_deleter<Y>()) // Y must be complete in shared_ptr() function in boost_132::shared_ptr 135 template<class Y, class D> shared_ptr(Y * p, D d): px(p), pn(p, d) in shared_ptr() function in boost_132::shared_ptr 153 explicit shared_ptr(weak_ptr<Y> const & r): pn(r.pn) // may throw in shared_ptr() function in boost_132::shared_ptr 160 shared_ptr(shared_ptr<Y> const & r): px(r.px), pn(r.pn) // never throws in shared_ptr() function in boost_132::shared_ptr 165 …shared_ptr(shared_ptr<Y> const & r, detail::static_cast_tag): px(static_cast<element_type *>(r.px)… in shared_ptr() function in boost_132::shared_ptr 170 …shared_ptr(shared_ptr<Y> const & r, detail::const_cast_tag): px(const_cast<element_type *>(r.px)),… in shared_ptr() function in boost_132::shared_ptr 175 …shared_ptr(shared_ptr<Y> const & r, detail::dynamic_cast_tag): px(dynamic_cast<element_type *>(r.p… in shared_ptr() function in boost_132::shared_ptr 184 …shared_ptr(shared_ptr<Y> const & r, detail::polymorphic_cast_tag): px(dynamic_cast<element_type *>… in shared_ptr() function in boost_132::shared_ptr [all …]
|
| D | shared_ptr_nmt_132.hpp | 33 template<class T> class shared_ptr class 44 explicit shared_ptr(T * p = 0): px(p) in shared_ptr() function in boost::shared_ptr 80 shared_ptr(shared_ptr const & r): px(r.px) // never throws in shared_ptr() function in boost::shared_ptr 94 explicit shared_ptr(std::auto_ptr< T > & r) in shared_ptr() function in boost::shared_ptr
|
| /external/sdv/vsomeip/third_party/boost/smart_ptr/include/boost/smart_ptr/ |
| D | shared_ptr.hpp | 335 template<class T> class shared_ptr class 346 BOOST_CONSTEXPR shared_ptr() BOOST_SP_NOEXCEPT : px( 0 ), pn() in shared_ptr() function in boost::shared_ptr 352 BOOST_CONSTEXPR shared_ptr( boost::detail::sp_nullptr_t ) BOOST_SP_NOEXCEPT : px( 0 ), pn() in shared_ptr() function in boost::shared_ptr 358 …BOOST_CONSTEXPR shared_ptr( boost::detail::sp_internal_constructor_tag, element_type * px_, boost:… in shared_ptr() function in boost::shared_ptr 364 …BOOST_CONSTEXPR shared_ptr( boost::detail::sp_internal_constructor_tag, element_type * px_, boost:… in shared_ptr() function in boost::shared_ptr 371 explicit shared_ptr( Y * p ): px( p ), pn() // Y must be complete in shared_ptr() function in boost::shared_ptr 382 template<class Y, class D> shared_ptr( Y * p, D d ): px( p ), pn( p, d ) in shared_ptr() function in boost::shared_ptr 389 template<class D> shared_ptr( boost::detail::sp_nullptr_t p, D d ): px( p ), pn( p, d ) in shared_ptr() function in boost::shared_ptr 397 template<class Y, class D, class A> shared_ptr( Y * p, D d, A a ): px( p ), pn( p, d, a ) in shared_ptr() function in boost::shared_ptr 404 …template<class D, class A> shared_ptr( boost::detail::sp_nullptr_t p, D d, A a ): px( p ), pn( p, … in shared_ptr() function in boost::shared_ptr [all …]
|
| /external/sdv/vsomeip/third_party/boost/smart_ptr/test/ |
| D | sp_explicit_inst_test.cpp | 13 template class boost::shared_ptr< int >; member in boost 19 template class boost::shared_ptr< X >; member in boost
|
| /external/clang/test/SemaObjCXX/ |
| D | warn-missing-super.mm | 10 template<typename T> struct shared_ptr { struct 17 constexpr shared_ptr<int> dummy; argument
|
| /external/clang/test/Analysis/Inputs/ |
| D | system-header-simulator-cxx-std-suppression.h | 125 shared_ptr(shared_ptr&& __r) { } in shared_ptr() function 141 shared_ptr<_Tp>::shared_ptr(nullptr_t) { in shared_ptr() function
|
| /external/sdv/vsomeip/third_party/boost/smart_ptr/doc/smart_ptr/ |
| D | shared_ptr.adoc | 12 [#shared_ptr] anchor
|
| /external/rust/cxx/src/ |
| D | shared_ptr.rs | 30 let mut shared_ptr = MaybeUninit::<SharedPtr<T>>::uninit(); in null() localVariable 43 let mut shared_ptr = MaybeUninit::<SharedPtr<T>>::uninit(); in new() localVariable 94 let mut shared_ptr = MaybeUninit::<SharedPtr<T>>::uninit(); in clone() localVariable
|
| D | lib.rs | 466 mod shared_ptr; module
|
| D | weak_ptr.rs | 48 let mut shared_ptr = MaybeUninit::<SharedPtr<T>>::uninit(); in upgrade() localVariable
|
| /external/clang/test/Analysis/ |
| D | NewDelete-checker-test.cpp | 272 class shared_ptr { class 277 shared_ptr() : p(0), control(0) {} in shared_ptr() function in reference_count::shared_ptr 278 explicit shared_ptr(T *p) : p(p), control(new control_block) { in shared_ptr() function in reference_count::shared_ptr 281 shared_ptr(shared_ptr &other) : p(other.p), control(other.control) { in shared_ptr() function in reference_count::shared_ptr
|
| /external/clang/test/CodeGenCXX/ |
| D | linetable-eh.cpp | 20 template<class _Tp> class shared_ptr { class
|
| /external/tensorflow/tensorflow/core/framework/ |
| D | shared_ptr_variant.h | 28 std::shared_ptr<T> shared_ptr; member
|
| /external/sdv/vsomeip/third_party/boost/iterator/doc/ |
| D | index.rst | 216 .. |shared_ptr| replace:: ``shared_ptr`` substdef in Specialized Adaptors 217 .. _shared_ptr: ../../smart_ptr/shared_ptr.htm target in Specialized Adaptors
|
| /external/clang/test/SemaTemplate/ |
| D | destructor-template.cpp | 66 template <class T> class shared_ptr {}; class
|
| /external/rust/cxx/tests/ |
| D | test.rs | 278 let shared_ptr = ffi::c_return_shared_ptr(); in test_shared_ptr_weak_ptr() localVariable
|
| /external/rust/crates/arc-swap/src/ |
| D | cache.rs | 164 let shared_ptr = self.arc_swap.ptr.load(Ordering::Relaxed); in revalidate() localVariable
|
| /external/mesa3d/src/gallium/auxiliary/gallivm/ |
| D | lp_bld_tgsi.h | 286 LLVMValueRef shared_ptr; member 553 LLVMValueRef shared_ptr; member
|
| D | lp_bld_nir.h | 288 LLVMValueRef shared_ptr; member
|
| /external/rust/cxx/tests/ffi/ |
| D | lib.rs | 468 let mut shared_ptr = MaybeUninit::<SharedPtr<ffi::C>>::uninit(); in r_return_shared_ptr() localVariable
|
| /external/mesa3d/src/gallium/drivers/llvmpipe/ |
| D | lp_state_cs.c | 690 LLVMValueRef shared_ptr; in generate_compute() local
|