HomeSort by relevance Sort by last modified time
    Searched refs:scoped_refptr (Results 26 - 50 of 450) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libchrome/base/memory/
ref_counted.h 232 // 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() : ptr_(NULL) function in class:scoped_refptr
277 scoped_refptr(T* p) : ptr_(p) { function in class:scoped_refptr
283 scoped_refptr(const scoped_refptr<T>& r) : ptr_(r.ptr_) { function in class:scoped_refptr
292 scoped_refptr(const scoped_refptr<U>& r) : ptr_(r.get()) { function in class:scoped_refptr
299 scoped_refptr(scoped_refptr&& r) : ptr_(r.get()) { r.ptr_ = nullptr; } function in class:scoped_refptr
305 scoped_refptr(scoped_refptr<U>&& r) : ptr_(r.get()) { function in class:scoped_refptr
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_connection.h 24 scoped_refptr<dbus::Bus> Connect();
29 scoped_refptr<dbus::Bus> ConnectWithTimeout(base::TimeDelta timeout);
32 scoped_refptr<dbus::Bus> bus_;
  /external/webrtc/webrtc/base/
keep_ref_until_done.h 23 static inline void DoNothing(const scoped_refptr<T>& object) {}
31 return rtc::Bind(&impl::DoNothing<ObjectT>, scoped_refptr<ObjectT>(object));
36 const scoped_refptr<ObjectT>& object) {
  /external/v8/tools/clang/rewrite_scoped_refptr/tests/
local-returned-as-raw-original.cc 5 #include "scoped_refptr.h"
16 scoped_refptr<Foo> unsafe(new Foo);
temp-assigned-to-field-init-original.cc 5 #include "scoped_refptr.h"
12 scoped_refptr<Foo> GetBuggyFoo() {
temp-passed-as-raw-arg-expected.cc 5 #include "scoped_refptr.h"
11 // A temporary scoped_refptr is passed as a raw pointer function argument. Since
16 scoped_refptr<Foo> GetBuggyFoo() {
temp-passed-as-raw-arg-original.cc 5 #include "scoped_refptr.h"
11 // A temporary scoped_refptr is passed as a raw pointer function argument. Since
16 scoped_refptr<Foo> GetBuggyFoo() {
test8-expected.cc 5 #include "scoped_refptr.h"
19 // Ensure that de-referencing scoped_refptr<>'s are properly rewritten as
23 scoped_refptr<Bar>* heap_allocated = new scoped_refptr<Bar>();
test8-original.cc 5 #include "scoped_refptr.h"
19 // Ensure that de-referencing scoped_refptr<>'s are properly rewritten as
23 scoped_refptr<Bar>* heap_allocated = new scoped_refptr<Bar>();
  /external/webrtc/talk/app/webrtc/
audiotrack.h 47 const rtc::scoped_refptr<AudioSourceInterface>& source);
51 static rtc::scoped_refptr<AudioTrack> Create(
53 const rtc::scoped_refptr<AudioSourceInterface>& source);
69 const rtc::scoped_refptr<AudioSourceInterface> audio_source_;
rtpreceiverinterface.h 45 virtual rtc::scoped_refptr<MediaStreamTrackInterface> track() const = 0;
59 PROXY_CONSTMETHOD0(rtc::scoped_refptr<MediaStreamTrackInterface>, track)
  /external/webrtc/talk/app/webrtc/objc/
RTCAudioTrack+Internal.h 35 rtc::scoped_refptr<webrtc::AudioTrackInterface> audioTrack;
RTCPeerConnectionFactory+Internal.h 35 @property(nonatomic, assign) rtc::scoped_refptr<
RTCVideoSource+Internal.h 35 rtc::scoped_refptr<webrtc::VideoSourceInterface>videoSource;
RTCVideoTrack+Internal.h 38 rtc::scoped_refptr<webrtc::VideoTrackInterface> nativeVideoTrack;
RTCMediaSource+Internal.h 35 rtc::scoped_refptr<webrtc::MediaSourceInterface> mediaSource;
38 (rtc::scoped_refptr<webrtc::MediaSourceInterface>)mediaSource;
RTCMediaStream+Internal.h 35 rtc::scoped_refptr<webrtc::MediaStreamInterface> mediaStream;
38 (rtc::scoped_refptr<webrtc::MediaStreamInterface>)mediaStream;
RTCMediaStreamTrack+Internal.h 35 rtc::scoped_refptr<webrtc::MediaStreamTrackInterface> mediaTrack;
38 (rtc::scoped_refptr<webrtc::MediaStreamTrackInterface>)mediaTrack;
  /external/libchrome/base/task_scheduler/
task.h 52 scoped_refptr<SequencedTaskRunner> sequenced_task_runner_ref;
53 scoped_refptr<SingleThreadTaskRunner> single_thread_task_runner_ref;
  /external/libmojo/ipc/
ipc_message_attachment_set.h 67 bool AddAttachment(scoped_refptr<MessageAttachment> attachment,
72 bool AddAttachment(scoped_refptr<MessageAttachment> attachment);
81 scoped_refptr<MessageAttachment> GetNonBrokerableAttachmentAt(unsigned index);
85 scoped_refptr<MessageAttachment> GetBrokerableAttachmentAt(unsigned index);
93 std::vector<scoped_refptr<IPC::BrokerableAttachment>>
99 const scoped_refptr<BrokerableAttachment>& attachment);
147 std::vector<scoped_refptr<MessageAttachment>> attachments_;
150 std::vector<scoped_refptr<BrokerableAttachment>> brokerable_attachments_;
  /external/webrtc/webrtc/common_video/include/
i420_buffer_pool.h 31 rtc::scoped_refptr<VideoFrameBuffer> CreateBuffer(int width, int height);
38 std::list<rtc::scoped_refptr<I420Buffer>> buffers_;
  /external/webrtc/webrtc/modules/desktop_capture/
shared_desktop_frame.h 40 SharedDesktopFrame(rtc::scoped_refptr<Core> core);
42 rtc::scoped_refptr<Core> core_;
  /system/update_engine/
dbus_connection.h 30 const scoped_refptr<dbus::Bus>& GetDBus();
35 scoped_refptr<dbus::Bus> bus_;
  /external/libchrome/base/files/
file_path_watcher.h 61 scoped_refptr<base::SingleThreadTaskRunner> task_runner() const {
65 void set_task_runner(scoped_refptr<base::SingleThreadTaskRunner> runner) {
79 scoped_refptr<base::SingleThreadTaskRunner> task_runner_;
89 static void CancelWatch(const scoped_refptr<PlatformDelegate>& delegate);
104 scoped_refptr<PlatformDelegate> impl_;
  /external/libmojo/mojo/edk/system/
shared_buffer_dispatcher.h 44 // TODO(vtl): This should probably be made to return a scoped_refptr and have
50 scoped_refptr<SharedBufferDispatcher>* result);
54 const scoped_refptr<PlatformSharedBuffer>& shared_buffer,
55 scoped_refptr<SharedBufferDispatcher>* result);
58 static scoped_refptr<SharedBufferDispatcher> Deserialize(
68 scoped_refptr<PlatformSharedBuffer> PassPlatformSharedBuffer();
75 scoped_refptr<Dispatcher>* new_dispatcher) override;
92 static scoped_refptr<SharedBufferDispatcher> CreateInternal(
93 scoped_refptr<PlatformSharedBuffer> shared_buffer) {
99 scoped_refptr<PlatformSharedBuffer> shared_buffer)
    [all...]

Completed in 361 milliseconds

12 3 4 5 6 7 8 91011>>