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

/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dscoped_ref_ptr.h42 // scoped_refptr<MyFoo> foo = new MyFoo();
48 // scoped_refptr<MyFoo> foo = new MyFoo();
56 // The above examples show how scoped_refptr<T> acts like a pointer to T.
57 // Given two scoped_refptr<T> classes, it is also possible to exchange
61 // scoped_refptr<MyFoo> a = new MyFoo();
62 // scoped_refptr<MyFoo> b;
72 // scoped_refptr<MyFoo> a = new MyFoo();
73 // scoped_refptr<MyFoo> b;
88 class scoped_refptr { class in namespace:talk_base
90 scoped_refptr() function in class:talk_base::scoped_refptr
93 scoped_refptr(T* p) : ptr_(p) { function in class:talk_base::scoped_refptr
98 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:talk_base::scoped_refptr
104 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:talk_base::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.h226 // scoped_refptr<MyFoo> foo = new MyFoo();
232 // scoped_refptr<MyFoo> foo = new MyFoo();
240 // The above examples show how scoped_refptr<T> acts like a pointer to T.
241 // Given two scoped_refptr<T> classes, it is also possible to exchange
245 // scoped_refptr<MyFoo> a = new MyFoo();
246 // scoped_refptr<MyFoo> b;
256 // scoped_refptr<MyFoo> a = new MyFoo();
257 // scoped_refptr<MyFoo> b;
264 class scoped_refptr { class
268 scoped_refptr() function in class:scoped_refptr
271 scoped_refptr(T* p) : ptr_(p) { function in class:scoped_refptr
276 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:scoped_refptr
282 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<quota::SpecialStoragePolicy> storage_policy =
195 scoped_refptr<fileapi::FileSystemContext> file_system_context_;
547 const scoped_refptr<webkit_blob::ShareableFileReference>&) {
542 CreateSnapshotCallback( base::File::Error* error, base::File::Error result, const base::File::Info&, const base::FilePath&, const scoped_refptr<webkit_blob::ShareableFileReference>&) argument

Completed in 1686 milliseconds