Searched defs:scoped_refptr (Results 1 – 5 of 5) 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
6 class scoped_refptr { class
35 template class scoped_refptr<base::OpaqueRefCounted>; variable