Home
last modified time | relevance | path

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

/external/v8/tools/clang/rewrite_scoped_refptr/tests/
Dscoped_refptr.h13 scoped_refptr() : ptr_(0) {} in scoped_refptr() function
14 scoped_refptr(T* p) : ptr_(p) {} in scoped_refptr() function
15 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) {} in scoped_refptr() function
18 scoped_refptr(const scoped_refptr<U>& r) in scoped_refptr() function
/external/webrtc/webrtc/base/
Dscoped_ref_ptr.h73 scoped_refptr() : ptr_(NULL) { in scoped_refptr() function
76 scoped_refptr(T* p) : ptr_(p) { in scoped_refptr() function
81 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { in scoped_refptr() function
87 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { in scoped_refptr() function
/external/v8/tools/clang/base_bind_rewriters/tests/
Dtest-expected.cc6 class scoped_refptr { class
Dtest-original.cc6 class scoped_refptr { class
/external/libchrome/base/test/
Dopaque_ref_counted.cc35 template class scoped_refptr<base::OpaqueRefCounted>; variable