Searched defs:scoped_refptr (Results 1 – 1 of 1) sorted by relevance
18 class scoped_refptr; variable173 constexpr scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function180 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function186 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function190 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function196 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function256 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function260 friend class scoped_refptr; variable