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

12 3 4 5 6 7 8 91011>>

  /external/webrtc/webrtc/test/
test_suite.h 21 #include "webrtc/base/scoped_ptr.h"
44 rtc::scoped_ptr<TraceToStderr> trace_to_stderr_;
fake_audio_device.h 17 #include "webrtc/base/scoped_ptr.h"
60 rtc::scoped_ptr<EventTimerWrapper> tick_;
63 rtc::scoped_ptr<ModuleFileUtility> file_utility_;
64 rtc::scoped_ptr<FileWrapper> input_stream_;
  /external/protobuf/src/google/protobuf/stubs/
scoped_ptr.h 40 // from google3/base/scoped_ptr.h
45 // implementation of the scoped_ptr class, and its closely-related brethren,
48 template <class C> class scoped_ptr;
51 // A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T>
53 // That is, scoped_ptr<T> owns the T object that it points to.
54 // Like a T*, a scoped_ptr<T> may hold either NULL or a pointer to a T object.
56 // The size of a scoped_ptr is small:
57 // sizeof(scoped_ptr<C>) == sizeof(C*)
59 class scoped_ptr { class in namespace:google::protobuf::internal
68 explicit scoped_ptr(C* p = NULL) : ptr_(p) { } function in class:google::protobuf::internal::scoped_ptr
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
scoped_ptr.h 40 // from google3/base/scoped_ptr.h
45 // implementation of the scoped_ptr class, and its closely-related brethren,
48 template <class C> class scoped_ptr;
51 // A scoped_ptr<T> is like a T*, except that the destructor of scoped_ptr<T>
53 // That is, scoped_ptr<T> owns the T object that it points to.
54 // Like a T*, a scoped_ptr<T> may hold either NULL or a pointer to a T object.
56 // The size of a scoped_ptr is small:
57 // sizeof(scoped_ptr<C>) == sizeof(C*)
59 class scoped_ptr { class in namespace:google::protobuf::internal
68 explicit scoped_ptr(C* p = NULL) : ptr_(p) { } function in class:google::protobuf::internal::scoped_ptr
    [all...]
  /external/webrtc/webrtc/common_audio/
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_;
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));
  /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_;
histogram.h 16 #include "webrtc/base/scoped_ptr.h"
76 rtc::scoped_ptr<int[]> activity_probability_;
78 rtc::scoped_ptr<int[]> hist_bin_index_;
  /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_;
wpd_tree.h 14 #include "webrtc/base/scoped_ptr.h"
86 rtc::scoped_ptr<rtc::scoped_ptr<WPDNode>[]> nodes_;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
neteq_impl.h 17 #include "webrtc/base/scoped_ptr.h"
341 const rtc::scoped_ptr<CriticalSectionWrapper> crit_sect_;
342 const rtc::scoped_ptr<BufferLevelFilter> buffer_level_filter_
344 const rtc::scoped_ptr<DecoderDatabase> decoder_database_
346 const rtc::scoped_ptr<DelayManager> delay_manager_ GUARDED_BY(crit_sect_);
347 const rtc::scoped_ptr<DelayPeakDetector> delay_peak_detector_
349 const rtc::scoped_ptr<DtmfBuffer> dtmf_buffer_ GUARDED_BY(crit_sect_);
350 const rtc::scoped_ptr<DtmfToneGenerator> dtmf_tone_generator_
352 const rtc::scoped_ptr<PacketBuffer> packet_buffer_ GUARDED_BY(crit_sect_);
353 const rtc::scoped_ptr<PayloadSplitter> payload_splitter
    [all...]
  /external/webrtc/webrtc/modules/audio_device/android/
audio_manager.h 16 #include "webrtc/base/scoped_ptr.h"
42 rtc::scoped_ptr<GlobalRef> audio_manager);
51 rtc::scoped_ptr<GlobalRef> audio_manager_;
131 rtc::scoped_ptr<JNIEnvironment> j_environment_;
134 rtc::scoped_ptr<NativeRegistration> j_native_registration_;
137 rtc::scoped_ptr<AudioManager::JavaAudioManager> j_audio_manager_;
  /external/webrtc/webrtc/modules/audio_coding/codecs/tools/
audio_codec_speed_test.h 16 #include "webrtc/base/scoped_ptr.h"
64 rtc::scoped_ptr<int16_t[]> in_data_;
65 rtc::scoped_ptr<int16_t[]> out_data_;
68 rtc::scoped_ptr<uint8_t[]> bit_stream_;
  /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(
rtc_event_log_source.h 17 #include "webrtc/base/scoped_ptr.h"
61 rtc::scoped_ptr<rtclog::EventStream> event_log_;
62 rtc::scoped_ptr<RtpHeaderParser> parser_;
rtp_file_source.h 18 #include "webrtc/base/scoped_ptr.h"
59 rtc::scoped_ptr<RtpFileReader> rtp_reader_;
60 rtc::scoped_ptr<RtpHeaderParser> parser_;
  /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/base/
thread_checker_unittest.cc 17 #include "webrtc/base/scoped_ptr.h"
94 scoped_ptr<ThreadCheckerClass> thread_checker_class_;
102 scoped_ptr<ThreadCheckerClass> thread_checker_class(
113 scoped_ptr<ThreadCheckerClass> thread_checker_class(
126 scoped_ptr<ThreadCheckerClass> thread_checker_class(
141 scoped_ptr<ThreadCheckerClass> thread_checker_class(
165 scoped_ptr<ThreadCheckerClass> thread_checker_class(
  /external/webrtc/webrtc/common_video/include/
incoming_video_stream.h 15 #include "webrtc/base/scoped_ptr.h"
80 const rtc::scoped_ptr<CriticalSectionWrapper> stream_critsect_;
81 const rtc::scoped_ptr<CriticalSectionWrapper> thread_critsect_;
82 const rtc::scoped_ptr<CriticalSectionWrapper> buffer_critsect_;
85 rtc::scoped_ptr<rtc::PlatformThread> incoming_render_thread_
87 rtc::scoped_ptr<EventTimerWrapper> deliver_buffer_event_;
92 const rtc::scoped_ptr<VideoRenderFrames> render_buffers_
  /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_;
  /external/webrtc/webrtc/modules/audio_coding/test/
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_device/
fine_audio_buffer.h 14 #include "webrtc/base/scoped_ptr.h"
89 rtc::scoped_ptr<int8_t[]> playout_cache_buffer_;
96 rtc::scoped_ptr<int8_t[]> record_cache_buffer_;
  /external/webrtc/webrtc/modules/audio_processing/
audio_buffer.h 14 #include "webrtc/base/scoped_ptr.h"
149 rtc::scoped_ptr<IFChannelBuffer> data_;
150 rtc::scoped_ptr<IFChannelBuffer> split_data_;
151 rtc::scoped_ptr<SplittingFilter> splitting_filter_;
152 rtc::scoped_ptr<ChannelBuffer<int16_t> > mixed_low_pass_channels_;
153 rtc::scoped_ptr<ChannelBuffer<int16_t> > low_pass_reference_channels_;
154 rtc::scoped_ptr<IFChannelBuffer> input_buffer_;
155 rtc::scoped_ptr<IFChannelBuffer> output_buffer_;
156 rtc::scoped_ptr<ChannelBuffer<float> > process_buffer_;
  /external/webrtc/webrtc/modules/audio_processing/intelligibility/
intelligibility_enhancer.h 21 #include "webrtc/base/scoped_ptr.h"
156 rtc::scoped_ptr<float[]> filtered_clear_var_;
157 rtc::scoped_ptr<float[]> filtered_noise_var_;
159 rtc::scoped_ptr<float[]> center_freqs_;
161 rtc::scoped_ptr<float[]> rho_; // Production and interpretation SNR.
163 rtc::scoped_ptr<float[]> gains_eq_; // Pre-filter modified gains.
171 rtc::scoped_ptr<float[]> kbd_window_;
174 rtc::scoped_ptr<LappedTransform> render_mangler_;
175 rtc::scoped_ptr<LappedTransform> capture_mangler_;
  /external/webrtc/webrtc/modules/audio_processing/test/
protobuf_utils.cc 15 size_t ReadMessageBytesFromFile(FILE* file, rtc::scoped_ptr<uint8_t[]>* bytes) {
33 rtc::scoped_ptr<uint8_t[]> bytes;

Completed in 539 milliseconds

12 3 4 5 6 7 8 91011>>