Searched defs:scoped_refptr (Results 1 – 2 of 2) sorted by relevance
76 scoped_refptr() : ptr_(nullptr) {} in scoped_refptr() function78 scoped_refptr(T* p) : ptr_(p) { // NOLINT(runtime/explicit) in scoped_refptr() function83 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { in scoped_refptr() function89 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { in scoped_refptr() function95 scoped_refptr(scoped_refptr<T>&& r) noexcept : ptr_(r.release()) {} in scoped_refptr() function98 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.release()) {} in scoped_refptr() function
19 class scoped_refptr; variable174 constexpr scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function181 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function187 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function191 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function197 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function261 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function265 friend class scoped_refptr; variable