Searched defs:scoped_refptr (Results 1 – 3 of 3) sorted by relevance
13 scoped_refptr() : ptr_(0) {} in scoped_refptr() function14 scoped_refptr(T* p) : ptr_(p) {} in scoped_refptr() function15 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) {} in scoped_refptr() function18 scoped_refptr(const scoped_refptr<U>& r) in scoped_refptr() function
73 scoped_refptr() : ptr_(NULL) { in scoped_refptr() function76 scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function81 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { in scoped_refptr() function87 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { 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