Home
last modified time | relevance | path

Searched defs:WeakPtr (Results 1 – 5 of 5) sorted by relevance

/external/libchrome/base/memory/
Dweak_ptr.h85 template <typename T> class WeakPtr; variable
212 WeakPtr() : ptr_(nullptr) {} in WeakPtr() function
214 WeakPtr(std::nullptr_t) : ptr_(nullptr) {} in WeakPtr() function
219 WeakPtr(const WeakPtr<U>& other) : WeakPtrBase(other), ptr_(other.ptr_) { in WeakPtr() function
222 WeakPtr(WeakPtr<U>&& other) in WeakPtr() function
246 template <typename U> friend class WeakPtr; variable
250 WeakPtr(const internal::WeakReference& ref, T* ptr) in WeakPtr() function
/external/deqp/framework/delibs/decpp/
DdeSharedPtr.hpp173 class WeakPtr class
538 inline WeakPtr<T>::WeakPtr (void) in WeakPtr() function in de::WeakPtr
549 inline WeakPtr<T>::WeakPtr (const WeakPtr<T>& other) in WeakPtr() function in de::WeakPtr
561 inline WeakPtr<T>::WeakPtr (const SharedPtr<T>& other) in WeakPtr() function in de::WeakPtr
/external/libcxx/test/libcxx/utilities/memory/util.smartptr/
Drace_condition.pass.cpp25 typedef std::weak_ptr<int> WeakPtr; typedef
/external/pdfium/core/fxcrt/
Dcfx_weak_ptr_unittest.cpp17 using WeakPtr = CFX_WeakPtr<PseudoDeletable, ReleaseDeleter<PseudoDeletable>>; typedef
/external/libchrome/base/
Dbind_unittest.cc686 TEST_F(BindTest, WeakPtr) { in TEST_F() argument