HomeSort by relevance Sort by last modified time
    Searched refs:scoped_ptr (Results 1 - 25 of 895) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
scoped_ptr.hpp 2 // detail/scoped_ptr.hpp
23 class scoped_ptr class in namespace:asio::detail
27 explicit scoped_ptr(T* p = 0) function in class:asio::detail::scoped_ptr
33 ~scoped_ptr()
65 scoped_ptr(const scoped_ptr&);
66 scoped_ptr& operator=(const scoped_ptr&);
  /external/webrtc/webrtc/common_audio/resampler/include/
push_resampler.h 14 #include "webrtc/base/scoped_ptr.h"
39 rtc::scoped_ptr<PushSincResampler> sinc_resampler_;
40 rtc::scoped_ptr<PushSincResampler> sinc_resampler_right_;
44 rtc::scoped_ptr<T[]> src_left_;
45 rtc::scoped_ptr<T[]> src_right_;
46 rtc::scoped_ptr<T[]> dst_left_;
47 rtc::scoped_ptr<T[]> dst_right_;
  /external/webrtc/webrtc/modules/audio_processing/transient/
transient_suppressor.h 17 #include "webrtc/base/scoped_ptr.h"
74 rtc::scoped_ptr<TransientDetector> detector_;
83 rtc::scoped_ptr<float[]> in_buffer_;
84 rtc::scoped_ptr<float[]> detection_buffer_;
86 rtc::scoped_ptr<float[]> out_buffer_;
89 rtc::scoped_ptr<size_t[]> ip_;
90 rtc::scoped_ptr<float[]> wfft_;
92 rtc::scoped_ptr<float[]> spectral_mean_;
95 rtc::scoped_ptr<float[]> fft_buffer_;
97 rtc::scoped_ptr<float[]> magnitudes_
    [all...]
transient_detector.h 16 #include "webrtc/base/scoped_ptr.h"
58 rtc::scoped_ptr<WPDTree> wpd_tree_;
62 rtc::scoped_ptr<MovingMoments> moving_moments_[kLeaves];
64 rtc::scoped_ptr<float[]> first_moments_;
65 rtc::scoped_ptr<float[]> second_moments_;
  /external/webrtc/webrtc/base/
scoped_ptr.h 11 // Borrowed from Chromium's src/base/memory/scoped_ptr.h.
18 // Example usage (scoped_ptr<T>):
20 // scoped_ptr<Foo> foo(new Foo("wee"));
24 // scoped_ptr<Foo> foo; // No pointer managed.
37 // Example usage (scoped_ptr<T[]>):
39 // scoped_ptr<Foo[]> foo(new Foo[100]);
50 // copy will NOT work. Here is an example using scoped_ptr:
52 // void TakesOwnership(scoped_ptr<Foo> arg) {
55 // scoped_ptr<Foo> CreateFoo() {
58 // return scoped_ptr<Foo>(new Foo("new"))
309 class scoped_ptr { class in namespace:rtc
322 scoped_ptr() : impl_(nullptr) {} function in class:rtc::scoped_ptr
325 explicit scoped_ptr(element_type* p) : impl_(p) {} function in class:rtc::scoped_ptr
328 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {} function in class:rtc::scoped_ptr
331 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} function in class:rtc::scoped_ptr
344 scoped_ptr(scoped_ptr<U, V>&& other) function in class:rtc::scoped_ptr
466 class scoped_ptr<T[], D> { class in namespace:rtc
473 scoped_ptr() : impl_(nullptr) {} function in class:rtc::scoped_ptr
488 explicit scoped_ptr(element_type* array) : impl_(array) {} function in class:rtc::scoped_ptr
491 scoped_ptr(std::nullptr_t) : impl_(nullptr) {} function in class:rtc::scoped_ptr
494 scoped_ptr(scoped_ptr&& other) : impl_(&other.impl_) {} function in class:rtc::scoped_ptr
    [all...]
rtccertificate.h 16 #include "webrtc/base/scoped_ptr.h"
28 static scoped_refptr<RTCCertificate> Create(scoped_ptr<SSLIdentity> identity);
50 scoped_ptr<SSLIdentity> identity_;
asynctcpsocket_unittest.cc 16 #include "webrtc/base/scoped_ptr.h"
40 scoped_ptr<PhysicalSocketServer> pss_;
41 scoped_ptr<VirtualSocketServer> vss_;
43 scoped_ptr<AsyncTCPSocket> tcp_socket_;
asyncudpsocket_unittest.cc 16 #include "webrtc/base/scoped_ptr.h"
40 scoped_ptr<PhysicalSocketServer> pss_;
41 scoped_ptr<VirtualSocketServer> vss_;
43 scoped_ptr<AsyncUDPSocket> udp_socket_;
  /external/webrtc/webrtc/modules/audio_coding/test/
SpatialAudio.h 14 #include "webrtc/base/scoped_ptr.h"
36 rtc::scoped_ptr<AudioCodingModule> _acmLeft;
37 rtc::scoped_ptr<AudioCodingModule> _acmRight;
38 rtc::scoped_ptr<AudioCodingModule> _acmReceiver;
TwoWayCommunication.h 14 #include "webrtc/base/scoped_ptr.h"
34 rtc::scoped_ptr<AudioCodingModule> _acmA;
35 rtc::scoped_ptr<AudioCodingModule> _acmB;
37 rtc::scoped_ptr<AudioCodingModule> _acmRefA;
38 rtc::scoped_ptr<AudioCodingModule> _acmRefB;
TestVADDTX.h 15 #include "webrtc/base/scoped_ptr.h"
71 rtc::scoped_ptr<AudioCodingModule> acm_send_;
72 rtc::scoped_ptr<AudioCodingModule> acm_receive_;
73 rtc::scoped_ptr<Channel> channel_;
74 rtc::scoped_ptr<ActivityMonitor> monitor_;
iSACTest.h 16 #include "webrtc/base/scoped_ptr.h"
54 rtc::scoped_ptr<AudioCodingModule> _acmA;
55 rtc::scoped_ptr<AudioCodingModule> _acmB;
57 rtc::scoped_ptr<Channel> _channel_A2B;
58 rtc::scoped_ptr<Channel> _channel_B2A;
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
neteq_quality_test.h 17 #include "webrtc/base/scoped_ptr.h"
61 rtc::scoped_ptr<UniformLoss> uniform_loss_model_;
122 rtc::scoped_ptr<InputAudioFile> in_file_;
123 rtc::scoped_ptr<AudioSink> output_;
126 rtc::scoped_ptr<RtpGenerator> rtp_generator_;
127 rtc::scoped_ptr<NetEq> neteq_;
128 rtc::scoped_ptr<LossModel> loss_model_;
130 rtc::scoped_ptr<int16_t[]> in_data_;
131 rtc::scoped_ptr<uint8_t[]> payload_;
132 rtc::scoped_ptr<int16_t[]> out_data_
    [all...]
  /external/webrtc/webrtc/call/
congestion_controller.h 17 #include "webrtc/base/scoped_ptr.h"
71 rtc::scoped_ptr<VieRemb> remb_;
72 rtc::scoped_ptr<PacketRouter> packet_router_;
73 rtc::scoped_ptr<PacedSender> pacer_;
74 rtc::scoped_ptr<RemoteBitrateEstimator> remote_bitrate_estimator_;
75 rtc::scoped_ptr<RemoteEstimatorProxy> remote_estimator_proxy_;
84 rtc::scoped_ptr<ProcessThread> pacer_thread_;
86 rtc::scoped_ptr<BitrateController> bitrate_controller_;
87 rtc::scoped_ptr<TransportFeedbackAdapter> transport_feedback_adapter_;
  /external/webrtc/webrtc/common_audio/
fir_filter_neon.h 14 #include "webrtc/base/scoped_ptr.h"
31 rtc::scoped_ptr<float[], AlignedFreeDeleter> coefficients_;
32 rtc::scoped_ptr<float[], AlignedFreeDeleter> state_;
fir_filter_sse.h 14 #include "webrtc/base/scoped_ptr.h"
31 rtc::scoped_ptr<float[], AlignedFreeDeleter> coefficients_;
32 rtc::scoped_ptr<float[], AlignedFreeDeleter> state_;
real_fourier.h 16 #include "webrtc/base/scoped_ptr.h"
28 typedef rtc::scoped_ptr<float[], AlignedFreeDeleter> fft_real_scoper;
29 typedef rtc::scoped_ptr<std::complex<float>[], AlignedFreeDeleter>
37 static rtc::scoped_ptr<RealFourier> Create(int fft_order);
  /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/utility/include/
process_thread.h 15 #include "webrtc/base/scoped_ptr.h"
32 static rtc::scoped_ptr<ProcessThread> Create(const char* thread_name);
53 virtual void PostTask(rtc::scoped_ptr<ProcessTask> task) = 0;
  /external/webrtc/webrtc/modules/video_processing/
video_denoiser.h 32 rtc::scoped_ptr<DenoiseMetrics[]> metrics_;
33 rtc::scoped_ptr<DenoiserFilter> filter_;
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_utils.h 20 #include "webrtc/base/scoped_ptr.h"
104 // and histories from rtc::scoped_ptr to std::vector.
107 rtc::scoped_ptr<std::complex<float>[]> running_mean_;
108 rtc::scoped_ptr<std::complex<float>[]> running_mean_sq_;
111 rtc::scoped_ptr<std::complex<float>[]> sub_running_mean_;
112 rtc::scoped_ptr<std::complex<float>[]> sub_running_mean_sq_;
116 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> history_;
117 rtc::scoped_ptr<rtc::scoped_ptr<std::complex<float>[]>[]> subhistory_
    [all...]
  /external/webrtc/webrtc/modules/audio_processing/test/
audio_file_processor.h 18 #include "webrtc/base/scoped_ptr.h"
87 WavFileProcessor(rtc::scoped_ptr<AudioProcessing> ap,
88 rtc::scoped_ptr<WavReader> in_file,
89 rtc::scoped_ptr<WavWriter> out_file);
96 rtc::scoped_ptr<AudioProcessing> ap_;
110 AecDumpFileProcessor(rtc::scoped_ptr<AudioProcessing> ap,
112 rtc::scoped_ptr<WavWriter> out_file);
125 rtc::scoped_ptr<AudioProcessing> ap_;
128 rtc::scoped_ptr<ChannelBuffer<float>> in_buf_;
129 rtc::scoped_ptr<ChannelBuffer<float>> reverse_buf_
    [all...]
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/talk/media/webrtc/
webrtcvideocapturerfactory.cc 30 #include "webrtc/base/scoped_ptr.h"
35 rtc::scoped_ptr<WebRtcVideoCapturer> capturer(
  /external/webrtc/webrtc/api/objc/
RTCIceCandidate+Private.h 14 #include "webrtc/base/scoped_ptr.h"
25 rtc::scoped_ptr<webrtc::IceCandidateInterface> nativeCandidate;

Completed in 1092 milliseconds

1 2 3 4 5 6 7 8 91011>>