/external/rust/cxx/src/ |
D | weak_ptr.rs | 15 pub struct WeakPtr<T> struct 23 impl<T> WeakPtr<T> implementation 57 unsafe impl<T> Send for WeakPtr<T> where T: Send + Sync + WeakPtrTarget {} implementation 58 unsafe impl<T> Sync for WeakPtr<T> where T: Send + Sync + WeakPtrTarget {} implementation 60 impl<T> Clone for WeakPtr<T> implementation 75 impl<T> Drop for WeakPtr<T> implementation 85 impl<T> Debug for WeakPtr<T> implementation
|
/external/openscreen/util/ |
D | weak_ptr.h | 81 WeakPtr(const WeakPtr& other) : impl_(other.impl_) {} in WeakPtr() function 83 WeakPtr(WeakPtr&& other) noexcept : impl_(std::move(other.impl_)) {} in WeakPtr() function 96 WeakPtr(std::nullptr_t) {} // NOLINT in WeakPtr() function 105 WeakPtr(const WeakPtr<U>& other) : impl_(other.as_std_weak_ptr()) {} in WeakPtr() function 108 WeakPtr(WeakPtr<U>&& other) noexcept in WeakPtr() function 154 explicit WeakPtr(const std::weak_ptr<U>& other) : impl_(other) {} in WeakPtr() function 157 explicit WeakPtr(std::weak_ptr<U>&& other) noexcept in WeakPtr() function
|
/external/libchrome/base/memory/ |
D | weak_ptr.h | 85 template <typename T> class WeakPtr; variable 223 WeakPtr(std::nullptr_t) {} in WeakPtr() function 228 WeakPtr(const WeakPtr<U>& other) : WeakPtrBase(other) { in WeakPtr() function 235 WeakPtr(WeakPtr<U>&& other) : WeakPtrBase(std::move(other)) { in WeakPtr() function 260 template <typename U> friend class WeakPtr; variable 264 WeakPtr(const internal::WeakReference& ref, T* ptr) in WeakPtr() function
|
/external/pdfium/core/fxcrt/ |
D | weak_ptr_unittest.cpp | 37 TEST(WeakPtr, Null) { in TEST() argument 54 TEST(WeakPtr, NonNull) { in TEST() argument 83 TEST(WeakPtr, ResetNull) { in TEST() argument 101 TEST(WeakPtr, ResetNonNull) { in TEST() argument 123 TEST(WeakPtr, DeleteObject) { in TEST() argument 141 TEST(WeakPtr, Cyclic) { in TEST() argument 157 TEST(WeakPtr, CyclicDeleteObject) { in TEST() argument
|
D | weak_ptr.h | 23 WeakPtr(const WeakPtr& that) : m_pHandle(that.m_pHandle) {} in WeakPtr() function 24 WeakPtr(WeakPtr&& that) noexcept { Swap(that); } in WeakPtr() function 25 explicit WeakPtr(std::unique_ptr<T, D> pObj) in WeakPtr() function 30 WeakPtr(std::nullptr_t arg) {} in WeakPtr() function
|
/external/webrtc/rtc_base/ |
D | weak_ptr.h | 168 WeakPtr() : ptr_(nullptr) {} in WeakPtr() function 173 WeakPtr(const WeakPtr<U>& other) in WeakPtr() function 176 WeakPtr(WeakPtr<U>&& other) in WeakPtr() function 203 WeakPtr(const internal::WeakReference& ref, T* ptr) in WeakPtr() function
|
/external/perfetto/include/perfetto/ext/base/ |
D | weak_ptr.h | 55 WeakPtr() {} in WeakPtr() function 72 explicit WeakPtr(const std::shared_ptr<T*>& handle) : handle_(handle) {} in WeakPtr() function
|
/external/deqp/framework/delibs/decpp/ |
D | deSharedPtr.hpp | 173 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/ |
D | race_condition.pass.cpp | 25 typedef std::weak_ptr<int> WeakPtr; typedef
|
/external/rust/cxx/syntax/ |
D | instantiate.rs | 12 WeakPtr(NamedImplKey<'a>), enumerator
|
D | mod.rs | 214 WeakPtr(Box<Ty1>), enumerator
|