Home
last modified time | relevance | path

Searched defs:RefPtr (Results 1 – 19 of 19) sorted by relevance

/third_party/flutter/engine/flutter/fml/memory/
Dref_ptr.h68 RefPtr() : ptr_(nullptr) {} in RefPtr() function
69 RefPtr(std::nullptr_t) : ptr_(nullptr) {} in RefPtr() function
76 explicit RefPtr(U* p) : ptr_(p) { in RefPtr() function
82 RefPtr(const RefPtr<T>& r) : ptr_(r.ptr_) { in RefPtr() function
88 RefPtr(const RefPtr<U>& r) : ptr_(r.ptr_) { in RefPtr() function
94 RefPtr(RefPtr<T>&& r) : ptr_(r.ptr_) { r.ptr_ = nullptr; } in RefPtr() function
97 RefPtr(RefPtr<U>&& r) : ptr_(r.ptr_) { in RefPtr() function
192 RefPtr(T* ptr, AdoptTag) : ptr_(ptr) { FML_DCHECK(ptr_); } in RefPtr() function
Dref_ptr_internal.h15 class RefPtr; variable
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dissue-638-stylo-cannot-find-T-in-this-scope.rs10 pub struct RefPtr<T> { struct
14 impl<T> Default for RefPtr<T> { implementation
Dforward-declaration-autoptr.rs15 pub struct RefPtr<T> { struct
19 impl<T> Default for RefPtr<T> { argument
Dissue-662-cannot-find-T-in-this-scope.rs10 pub struct RefPtr<T> { struct
14 impl<T> Default for RefPtr<T> { argument
Dmaddness-is-avoidable.rs10 pub struct RefPtr { struct
15 pub struct RefPtr_Proxy { argument
Dtemplate-fun-ty.rs17 pub struct RefPtr { struct
22 pub struct RefPtr_Proxy { argument
Dissue-645-cannot-find-type-T-in-this-scope.rs9 pub struct RefPtr<T>(T); struct
Dissue-662-part-2.rs9 pub struct RefPtr<T>(T); struct
Dissue-584-stylo-template-analysis-panic.rs8 pub type RefPtr<T> = T; typedef
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dforward-declaration-autoptr.hpp4 struct RefPtr { struct
9 RefPtr<Foo> m_member; argument
Dmaddness-is-avoidable.hpp4 class RefPtr { class
Dissue-645-cannot-find-type-T-in-this-scope.hpp3 template <class> class RefPtr {}; class
Dissue-662-part-2.hpp7 template <class> class RefPtr {}; class
Dissue-638-stylo-cannot-find-T-in-this-scope.hpp4 class RefPtr { class
Dissue-662-cannot-find-T-in-this-scope.hpp3 template <class T> class RefPtr { T a; }; class
Dtemplate-fun-ty.hpp9 class RefPtr { class
/third_party/openh264/module/
DRefCounted.h115 explicit RefPtr(T* aPtr) : mPtr(nullptr) { in RefPtr() function
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp10726 class RefPtr class
10763 RefPtr() in RefPtr() function in RefPtr
10769 RefPtr(const RefPtr<T>& aSmartPtr) in RefPtr() function in RefPtr
10778 RefPtr(RefPtr<T>&& aRefPtr) in RefPtr() function in RefPtr
10786 RefPtr(T* aRawPtr) in RefPtr() function in RefPtr
10794 RefPtr(decltype(nullptr)) in RefPtr() function in RefPtr
10800 RefPtr(already_AddRefed<I>& aSmartPtr) in RefPtr() function in RefPtr
10807 RefPtr(already_AddRefed<I>&& aSmartPtr) in RefPtr() function in RefPtr
10814 RefPtr(const RefPtr<I>& aSmartPtr) in RefPtr() function in RefPtr
10824 RefPtr(RefPtr<I>&& aSmartPtr) in RefPtr() function in RefPtr
[all …]