Searched defs:scoped_refptr (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/tools/clang/rewrite_scoped_refptr/tests/
H A Dscoped_refptr.h8 // Stub scoped_refptr<T> class that supports an implicit cast to T*.
10 class scoped_refptr { class
13 scoped_refptr() : ptr_(0) {} function in class:scoped_refptr
14 scoped_refptr(T* p) : ptr_(p) {} function in class:scoped_refptr
15 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) {} function in class:scoped_refptr
18 scoped_refptr(const scoped_refptr<U>& r) function in class:scoped_refptr
21 ~scoped_refptr() {}
27 scoped_refptr<
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dscoped_ref_ptr.h25 // scoped_refptr<MyFoo> foo = new MyFoo();
31 // scoped_refptr<MyFoo> foo = new MyFoo();
39 // The above examples show how scoped_refptr<T> acts like a pointer to T.
40 // Given two scoped_refptr<T> classes, it is also possible to exchange
44 // scoped_refptr<MyFoo> a = new MyFoo();
45 // scoped_refptr<MyFoo> b;
55 // scoped_refptr<MyFoo> a = new MyFoo();
56 // scoped_refptr<MyFoo> b;
71 class scoped_refptr { class in namespace:rtc
73 scoped_refptr() function in class:rtc::scoped_refptr
76 scoped_refptr(T* p) : ptr_(p) { function in class:rtc::scoped_refptr
81 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:rtc::scoped_refptr
87 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:rtc::scoped_refptr
[all...]
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dscoped_refptr.h31 // scoped_refptr<MyFoo> foo = new MyFoo();
37 // scoped_refptr<MyFoo> foo = new MyFoo();
45 // The above examples show how scoped_refptr<T> acts like a pointer to T.
46 // Given two scoped_refptr<T> classes, it is also possible to exchange
50 // scoped_refptr<MyFoo> a = new MyFoo();
51 // scoped_refptr<MyFoo> b;
61 // scoped_refptr<MyFoo> a = new MyFoo();
62 // scoped_refptr<MyFoo> b;
69 class scoped_refptr { class in namespace:webrtc
71 scoped_refptr() function in class:webrtc::scoped_refptr
74 scoped_refptr(T* p) : ptr_(p) { function in class:webrtc::scoped_refptr
79 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:webrtc::scoped_refptr
85 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:webrtc::scoped_refptr
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dscoped_refptr.h24 // scoped_refptr<MyFoo> foo = new MyFoo();
30 // scoped_refptr<MyFoo> foo = new MyFoo();
38 // The above examples show how scoped_refptr<T> acts like a pointer to T.
39 // Given two scoped_refptr<T> classes, it is also possible to exchange
43 // scoped_refptr<MyFoo> a = new MyFoo();
44 // scoped_refptr<MyFoo> b;
54 // scoped_refptr<MyFoo> a = new MyFoo();
55 // scoped_refptr<MyFoo> b;
62 class scoped_refptr { class in namespace:webrtc
64 scoped_refptr() function in class:webrtc::scoped_refptr
67 scoped_refptr(T* p) : ptr_(p) { function in class:webrtc::scoped_refptr
72 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:webrtc::scoped_refptr
78 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:webrtc::scoped_refptr
[all...]
/external/chromium_org/base/memory/
H A Dref_counted.h232 // scoped_refptr<MyFoo> foo = new MyFoo();
238 // scoped_refptr<MyFoo> foo = new MyFoo();
246 // The above examples show how scoped_refptr<T> acts like a pointer to T.
247 // Given two scoped_refptr<T> classes, it is also possible to exchange
251 // scoped_refptr<MyFoo> a = new MyFoo();
252 // scoped_refptr<MyFoo> b;
262 // scoped_refptr<MyFoo> a = new MyFoo();
263 // scoped_refptr<MyFoo> b;
270 class scoped_refptr { class
274 scoped_refptr() function in class:scoped_refptr
277 scoped_refptr(T* p) : ptr_(p) { function in class:scoped_refptr
282 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:scoped_refptr
288 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:scoped_refptr
[all...]
/external/chromium_org/base/debug/
H A Dtrace_event_android.cc28 const scoped_refptr<base::debug::ConvertableToTraceFormat>*
62 const scoped_refptr<base::RefCountedString>&,
61 NoOpOutputCallback(base::WaitableEvent* complete_event, const scoped_refptr<base::RefCountedString>&, bool has_more_events) argument
/external/chromium_org/chrome/browser/media_galleries/fileapi/
H A Dnative_media_file_util_unittest.cc122 scoped_refptr<storage::SpecialStoragePolicy> storage_policy =
193 scoped_refptr<storage::FileSystemContext> file_system_context_;
551 const scoped_refptr<storage::ShareableFileReference>&) {
546 CreateSnapshotCallback( base::File::Error* error, base::File::Error result, const base::File::Info&, const base::FilePath&, const scoped_refptr<storage::ShareableFileReference>&) argument

Completed in 8176 milliseconds