Searched defs:scoped_refptr (Results 1 – 2 of 2) sorted by relevance
53 class scoped_refptr; variable216 constexpr scoped_refptr(std::nullptr_t) {} in scoped_refptr() function224 scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function231 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function237 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function241 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function247 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function326 scoped_refptr(T* p, base::cef_subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function330 friend class scoped_refptr; variable
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