Searched defs:WeakPtr (Results 1 – 5 of 5) sorted by relevance
85 template <typename T> class WeakPtr; variable212 WeakPtr() : ptr_(nullptr) {} in WeakPtr() function214 WeakPtr(std::nullptr_t) : ptr_(nullptr) {} in WeakPtr() function219 WeakPtr(const WeakPtr<U>& other) : WeakPtrBase(other), ptr_(other.ptr_) { in WeakPtr() function222 WeakPtr(WeakPtr<U>&& other) in WeakPtr() function246 template <typename U> friend class WeakPtr; variable250 WeakPtr(const internal::WeakReference& ref, T* ptr) in WeakPtr() function
173 class WeakPtr class538 inline WeakPtr<T>::WeakPtr (void) in WeakPtr() function in de::WeakPtr549 inline WeakPtr<T>::WeakPtr (const WeakPtr<T>& other) in WeakPtr() function in de::WeakPtr561 inline WeakPtr<T>::WeakPtr (const SharedPtr<T>& other) in WeakPtr() function in de::WeakPtr
25 typedef std::weak_ptr<int> WeakPtr; typedef
17 using WeakPtr = CFX_WeakPtr<PseudoDeletable, ReleaseDeleter<PseudoDeletable>>; typedef
686 TEST_F(BindTest, WeakPtr) { in TEST_F() argument