Searched defs:scoped_refptr (Results 1 – 2 of 2) sorted by relevance
64 scoped_refptr() : ptr_(NULL) { in scoped_refptr() function67 scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function72 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { in scoped_refptr() function78 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { in scoped_refptr() function
16 template <class T> class scoped_refptr; variable