Home
last modified time | relevance | path

Searched defs:scoped_refptr (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/api/
Dscoped_refptr.h76 scoped_refptr() : ptr_(nullptr) {} in scoped_refptr() function
78 scoped_refptr(T* p) : ptr_(p) { // NOLINT(runtime/explicit) in scoped_refptr() function
83 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { in scoped_refptr() function
89 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { in scoped_refptr() function
95 scoped_refptr(scoped_refptr<T>&& r) noexcept : ptr_(r.release()) {} in scoped_refptr() function
98 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.release()) {} in scoped_refptr() function
/external/libchrome/base/memory/
Dscoped_refptr.h19 class scoped_refptr; variable
174 constexpr scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
181 scoped_refptr(const scoped_refptr& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
187 scoped_refptr(const scoped_refptr<U>& r) : scoped_refptr(r.ptr_) {} in scoped_refptr() function
191 scoped_refptr(scoped_refptr&& r) noexcept : ptr_(r.ptr_) { r.ptr_ = nullptr; } in scoped_refptr() function
197 scoped_refptr(scoped_refptr<U>&& r) noexcept : ptr_(r.ptr_) { in scoped_refptr() function
261 scoped_refptr(T* p, base::subtle::AdoptRefTag) : ptr_(p) {} in scoped_refptr() function
265 friend class scoped_refptr; variable