Home
last modified time | relevance | path

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

/third_party/cef/include/base/
Dcef_scoped_refptr.h53 class scoped_refptr; variable
216 constexpr scoped_refptr(std::nullptr_t) {} in scoped_refptr() function
224 scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
231 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
237 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
241 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function
247 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function
326 scoped_refptr(T* p, base::cef_subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function
330 friend class scoped_refptr; variable
/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