Searched defs:shared_ptr (Results 1 – 3 of 3) sorted by relevance
167 constexpr shared_ptr(nullptr_t) noexcept {} in shared_ptr() function168 shared_ptr(const shared_ptr& p) noexcept : Internals::PtrCountedBase<T>(p) in shared_ptr() function174 shared_ptr(shared_ptr&& p) noexcept : Internals::PtrCountedBase<T>(p) in shared_ptr() function178 explicit shared_ptr(T* ptr) in shared_ptr() function186 shared_ptr(T* ptr, Deleter deleter) in shared_ptr() function193 explicit shared_ptr(const weak_type& p) noexcept : Internals::PtrCountedBase<T>(p) in shared_ptr() function202 shared_ptr(const shared_ptr<Y>& r, T* ptr) noexcept : Internals::PtrCountedBase<T>(r.control_) in shared_ptr() function212 shared_ptr(shared_ptr<U>&& p) noexcept : Internals::PtrCountedBase<T>(p.control_) in shared_ptr() function237 …shared_ptr(const shared_ptr<U>& p) noexcept : shared_ptr(shared_ptr<U>(p)) // use the above move c… in shared_ptr() function241 shared_ptr(unique_ptr<U, D>&& p) noexcept in shared_ptr() function[all …]
30 class shared_ptr; variable
41 operator BASE_NS::shared_ptr<IEvent>() const in shared_ptr() function