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