Searched defs:scoped_refptr (Results 1 – 7 of 7) sorted by relevance
19 class scoped_refptr; variable179 constexpr scoped_refptr(std::nullptr_t) {} in scoped_refptr() function187 scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function195 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function201 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function205 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function211 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function285 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function289 friend class scoped_refptr; variable
76 scoped_refptr() : ptr_(nullptr) {} in scoped_refptr() function77 scoped_refptr(std::nullptr_t) : ptr_(nullptr) {} // NOLINT(runtime/explicit) in scoped_refptr() function79 explicit scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function84 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { in scoped_refptr() function90 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { in scoped_refptr() function96 scoped_refptr(scoped_refptr<T>&& r) noexcept : ptr_(r.release()) {} in scoped_refptr() function99 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
22 class scoped_refptr; variable177 constexpr scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function184 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function190 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function194 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function200 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function264 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function268 friend class scoped_refptr; variable
21 class scoped_refptr; variable
16 template <class T> class scoped_refptr; variable