HomeSort by relevance Sort by last modified time
    Searched full:scoped_ptr (Results 51 - 75 of 1384) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.h 32 rtc::scoped_ptr<DenoiseMetrics[]> metrics_;
33 rtc::scoped_ptr<DenoiserFilter> filter_;
  /external/webrtc/webrtc/video/
vie_receiver.h 17 #include "webrtc/base/scoped_ptr.h"
107 rtc::scoped_ptr<CriticalSectionWrapper> receive_cs_;
109 rtc::scoped_ptr<RtpHeaderParser> rtp_header_parser_;
110 rtc::scoped_ptr<RTPPayloadRegistry> rtp_payload_registry_;
111 rtc::scoped_ptr<RtpReceiver> rtp_receiver_;
112 const rtc::scoped_ptr<ReceiveStatistics> rtp_receive_statistics_;
113 rtc::scoped_ptr<FecReceiver> fec_receiver_;
119 rtc::scoped_ptr<RemoteNtpTimeEstimator> ntp_estimator_;
vie_sync_module.h 17 #include "webrtc/base/scoped_ptr.h"
48 rtc::scoped_ptr<CriticalSectionWrapper> data_cs_;
55 rtc::scoped_ptr<StreamSynchronization> sync_;
  /external/libweave/third_party/chromium/base/
values_unittest.cc 12 #include "base/memory/scoped_ptr.h"
39 scoped_ptr<ListValue> new_toolbar_bookmarks(new ListValue);
43 scoped_ptr<DictionaryValue> new_bookmark(new DictionaryValue);
62 scoped_ptr<ListValue> mixed_list(new ListValue());
112 scoped_ptr<BinaryValue> binary(new BinaryValue());
118 scoped_ptr<char[]> buffer(new char[15]);
144 scoped_ptr<Value> narrow_value(new StringValue("narrow"));
211 scoped_ptr<Value> removed_item;
240 scoped_ptr<DeletionTestValue> value(new DeletionTestValue(&deletion_flag));
283 scoped_ptr<Value> removed_item
    [all...]
  /external/webrtc/webrtc/audio/
audio_state_unittest.cc 14 #include "webrtc/base/scoped_ptr.h"
47 rtc::scoped_ptr<internal::AudioState> audio_state(
53 rtc::scoped_ptr<internal::AudioState> audio_state(
60 rtc::scoped_ptr<internal::AudioState> audio_state(
  /external/webrtc/webrtc/libjingle/xmpp/
xmpplogintask.h 20 #include "webrtc/base/scoped_ptr.h"
73 rtc::scoped_ptr<XmlElement> pelFeatures_;
76 rtc::scoped_ptr<std::vector<XmlElement *> > pvecQueuedStanzas_;
78 rtc::scoped_ptr<SaslMechanism> sasl_mech_;
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtpcat.cc 14 #include "webrtc/base/scoped_ptr.h"
18 using rtc::scoped_ptr;
29 scoped_ptr<RtpFileWriter> output(
35 scoped_ptr<RtpFileReader> input(
  /external/webrtc/webrtc/modules/desktop_capture/
desktop_and_cursor_composer.h 14 #include "webrtc/base/scoped_ptr.h"
49 rtc::scoped_ptr<DesktopCapturer> desktop_capturer_;
50 rtc::scoped_ptr<MouseCursorMonitor> mouse_monitor_;
54 rtc::scoped_ptr<MouseCursor> cursor_;
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
remb.h 41 rtc::scoped_ptr<BitrateController> bitrate_controller_;
42 rtc::scoped_ptr<RtcpBandwidthObserver> feedback_observer_;
71 rtc::scoped_ptr<ReceiveStatistics> recv_stats_;
74 rtc::scoped_ptr<RemoteBitrateEstimator> estimator_;
send_side.h 37 rtc::scoped_ptr<BitrateController> bitrate_controller_;
38 rtc::scoped_ptr<RemoteBitrateEstimator> rbe_;
39 rtc::scoped_ptr<RtcpBandwidthObserver> feedback_observer_;
  /external/webrtc/webrtc/modules/video_render/ios/
video_render_ios_gles20.h 18 #include "webrtc/base/scoped_ptr.h"
65 rtc::scoped_ptr<CriticalSectionWrapper> gles_crit_sec_;
67 // TODO(pbos): Remove scoped_ptr and use member directly.
68 rtc::scoped_ptr<rtc::PlatformThread> screen_update_thread_;
  /external/google-breakpad/src/common/
scoped_ptr.h 34 // Example usage (scoped_ptr):
36 // scoped_ptr<Foo> foo(new Foo("wee"));
40 // scoped_ptr<Foo> foo; // No pointer managed.
64 // implementation of the scoped_ptr class, and its closely-related brethren,
73 // A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T>
75 // That is, scoped_ptr<T> owns the T object that it points to.
76 // Like a T*, a scoped_ptr<T> may hold either NULL or a pointer to a T object.
77 // Also like T*, scoped_ptr<T> is thread-compatible, and once you
80 // The size of a scoped_ptr is small
83 class scoped_ptr { class in namespace:google_breakpad
92 explicit scoped_ptr(C* p = NULL) : ptr_(p) { } function in class:google_breakpad::scoped_ptr
    [all...]
  /external/webrtc/webrtc/common_audio/
real_fourier.cc 24 rtc::scoped_ptr<RealFourier> RealFourier::Create(int fft_order) {
26 return rtc::scoped_ptr<RealFourier>(new RealFourierOpenmax(fft_order));
28 return rtc::scoped_ptr<RealFourier>(new RealFourierOoura(fft_order));
real_fourier_ooura.h 16 #include "webrtc/base/scoped_ptr.h"
38 const rtc::scoped_ptr<size_t[]> work_ip_;
39 const rtc::scoped_ptr<float[]> work_w_;
  /external/webrtc/webrtc/libjingle/xmllite/
xmlbuilder.h 17 #include "webrtc/base/scoped_ptr.h"
55 rtc::scoped_ptr<XmlElement> pelRoot_;
56 rtc::scoped_ptr<std::vector<XmlElement*> > pvParents_;
xmlnsstack.h 17 #include "webrtc/base/scoped_ptr.h"
40 rtc::scoped_ptr<std::vector<std::string> > pxmlnsStack_;
41 rtc::scoped_ptr<std::vector<size_t> > pxmlnsDepthStack_;
  /external/webrtc/webrtc/modules/audio_coding/test/
PacketLossTest.h 15 #include "webrtc/base/scoped_ptr.h"
58 rtc::scoped_ptr<SenderWithFEC> sender_;
59 rtc::scoped_ptr<ReceiverWithPacketLoss> receiver_;
TestRedFec.h 15 #include "webrtc/base/scoped_ptr.h"
39 rtc::scoped_ptr<AudioCodingModule> _acmA;
40 rtc::scoped_ptr<AudioCodingModule> _acmB;
  /external/webrtc/webrtc/modules/audio_processing/agc/
agc.h 14 #include "webrtc/base/scoped_ptr.h"
51 rtc::scoped_ptr<Histogram> histogram_;
52 rtc::scoped_ptr<Histogram> inactive_histogram_;
  /external/webrtc/webrtc/modules/audio_processing/test/
protobuf_utils.h 19 #include "webrtc/base/scoped_ptr.h"
23 // Allocates new memory in the scoped_ptr to fit the raw message and returns the
25 size_t ReadMessageBytesFromFile(FILE* file, rtc::scoped_ptr<uint8_t[]>* bytes);
  /external/webrtc/webrtc/modules/audio_processing/transient/
wpd_node.h 14 #include "webrtc/base/scoped_ptr.h"
39 rtc::scoped_ptr<float[]> data_;
41 rtc::scoped_ptr<FIRFilter> filter_;
  /external/webrtc/webrtc/modules/desktop_capture/win/
scoped_thread_desktop.h 17 #include "webrtc/base/scoped_ptr.h"
43 rtc::scoped_ptr<Desktop> assigned_;
46 rtc::scoped_ptr<Desktop> initial_;
  /external/webrtc/webrtc/modules/video_coding/test/
vcm_payload_sink_factory.h 18 #include "webrtc/base/scoped_ptr.h"
61 rtc::scoped_ptr<NullEventFactory> null_event_factory_;
62 rtc::scoped_ptr<CriticalSectionWrapper> crit_sect_;
  /external/webrtc/webrtc/system_wrappers/source/
event_timer_posix.h 49 // TODO(pbos): Remove scoped_ptr and use PlatformThread directly.
50 rtc::scoped_ptr<rtc::PlatformThread> timer_thread_;
51 rtc::scoped_ptr<EventTimerPosix> timer_event_;
  /external/webrtc/webrtc/test/
frame_generator_capturer.h 17 #include "webrtc/base/scoped_ptr.h"
65 rtc::scoped_ptr<EventTimerWrapper> tick_;
68 rtc::scoped_ptr<FrameGenerator> frame_generator_;

Completed in 210 milliseconds

1 23 4 5 6 7 8 91011>>