Home
last modified time | relevance | path

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

/third_party/gn/src/base/memory/
Dscoped_refptr.h18 class scoped_refptr; variable
173 constexpr scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
180 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
186 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
190 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function
196 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function
256 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function
260 friend class scoped_refptr; variable