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

1 2

  /external/webrtc/webrtc/modules/audio_processing/
three_band_filter_bank.h 61 ScopedVector<SparseFIRFilter> analysis_filters_;
62 ScopedVector<SparseFIRFilter> synthesis_filters_;
splitting_filter.h 63 ScopedVector<ThreeBandFilterBank> three_band_filter_banks_;
audio_buffer.h 157 ScopedVector<PushSincResampler> input_resamplers_;
158 ScopedVector<PushSincResampler> output_resamplers_;
  /external/webrtc/webrtc/system_wrappers/include/
scoped_vector.h 24 // ScopedVector wraps a vector deleting the elements from its
27 class ScopedVector {
43 ScopedVector() {}
44 ~ScopedVector() { clear(); }
47 ScopedVector(ScopedVector&& other) { *this = std::move(other); }
48 ScopedVector& operator=(ScopedVector&& other) {
56 ScopedVector(const ScopedVector& other) = delete
    [all...]
  /external/libchrome/base/memory/
scoped_vector_unittest.cc 51 // The life cycle states we care about for the purposes of testing ScopedVector
132 ScopedVector<LifeCycleObject> scoped_vector;
144 ScopedVector<LifeCycleObject> scoped_vector;
156 ScopedVector<LifeCycleObject> scoped_vector;
170 ScopedVector<LifeCycleObject> scoped_vector;
195 ScopedVector<LifeCycleObject> scoped_vector;
214 ScopedVector<LifeCycleObject> scoped_vector;
226 ScopedVector<LifeCycleObject> scoped_vector;
231 ScopedVector<LifeCycleObject> scoped_vector_copy(std::move(scoped_vector));
245 ScopedVector<LifeCycleObject> scoped_vector
    [all...]
scoped_vector.h 17 // ScopedVector wraps a vector deleting the elements from its
23 class ScopedVector {
24 MOVE_ONLY_TYPE_FOR_CPP_03(ScopedVector)
41 ScopedVector() {}
42 ~ScopedVector() { clear(); }
43 ScopedVector(ScopedVector&& other) { swap(other); }
45 ScopedVector& operator=(ScopedVector&& rhs) {
83 void swap(ScopedVector<T>& other) { v_.swap(other.v_);
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
scoped_vector_unittest.cc 50 // The life cycle states we care about for the purposes of testing ScopedVector
125 ScopedVector<LifeCycleObject> scoped_vector;
137 ScopedVector<LifeCycleObject> scoped_vector;
149 ScopedVector<LifeCycleObject> scoped_vector;
163 ScopedVector<LifeCycleObject> scoped_vector;
188 ScopedVector<LifeCycleObject> scoped_vector;
207 ScopedVector<LifeCycleObject> scoped_vector;
219 ScopedVector<LifeCycleObject> scoped_vector;
224 ScopedVector<LifeCycleObject> scoped_vector_copy(
239 ScopedVector<LifeCycleObject> scoped_vector
    [all...]
  /external/libchrome/base/json/
json_value_converter.h 69 // For repeated field, we just assume ScopedVector for its container
251 class RepeatedValueConverter : public ValueConverter<ScopedVector<Element> > {
256 ScopedVector<Element>* field) const override {
287 : public ValueConverter<ScopedVector<NestedType> > {
292 ScopedVector<NestedType>* field) const override {
321 : public ValueConverter<ScopedVector<NestedType> > {
329 ScopedVector<NestedType>* field) const override {
428 ScopedVector<int> StructType::* field) {
430 new internal::FieldConverter<StructType, ScopedVector<int> >(
435 ScopedVector<std::string> StructType::* field)
    [all...]
json_value_converter_unittest.cc 30 ScopedVector<int> ints;
31 ScopedVector<std::string> string_values;
83 ScopedVector<SimpleMessage> children;
  /system/connectivity/shill/
crypto_provider.h 53 typedef ScopedVector<CryptoInterface> Cryptos;
connection_health_checker.h 214 ScopedVector<DNSClient> dns_clients_;
  /external/webrtc/webrtc/common_audio/
audio_converter.cc 101 ScopedVector<PushSincResampler> resamplers_;
108 CompositionConverter(ScopedVector<AudioConverter> converters)
135 ScopedVector<AudioConverter> converters_;
136 ScopedVector<ChannelBuffer<float>> buffers_;
146 ScopedVector<AudioConverter> converters;
158 ScopedVector<AudioConverter> converters;
  /external/webrtc/webrtc/video/
video_capture_input_unittest.cc 45 bool EqualFramesVector(const ScopedVector<VideoFrame>& frames1,
46 const ScopedVector<VideoFrame>& frames2);
99 ScopedVector<VideoFrame> input_frames_;
105 ScopedVector<VideoFrame> output_frames_;
281 bool EqualFramesVector(const ScopedVector<VideoFrame>& frames1,
282 const ScopedVector<VideoFrame>& frames2) {
  /external/v8/test/cctest/compiler/
test-run-bytecode-graph-builder.cc 76 ScopedVector<char> ignition_filter(64);
210 ScopedVector<char> script(1024);
238 ScopedVector<char> script(1024);
297 ScopedVector<char> script(1024);
342 ScopedVector<char> script(2048);
399 ScopedVector<char> script(2048);
450 ScopedVector<char> script(3072);
508 ScopedVector<char> script(2048);
543 ScopedVector<char> script(2048);
751 ScopedVector<char> script(1024)
    [all...]
test-loop-assignment-analysis.cc 24 ScopedVector<char> program(kBufferSize);
  /external/v8/src/
vector.h 160 class ScopedVector : public Vector<T> {
162 explicit ScopedVector(int length) : Vector<T>(NewArray<T>(length), length) { }
163 ~ScopedVector() {
168 DISALLOW_IMPLICIT_CONSTRUCTORS(ScopedVector);
  /system/connectivity/shill/cellular/
modem_info.h 79 typedef ScopedVector<ModemManager> ModemManagers;
mobile_operator_info.h 183 const ScopedVector<MobileAPN>& apn_list() const;
mobile_operator_info_impl.h 68 const ScopedVector<MobileOperatorInfo::MobileAPN>& apn_list() const;
204 ScopedVector<MobileOperatorInfo::MobileAPN> apn_list_;
  /external/libchrome/base/trace_event/
process_memory_dump.h 177 ScopedVector<MemoryAllocatorDump> allocator_dumps_storage_;
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
nonlinear_beamformer.h 170 // |num_input_channels_|. ScopedVector has a size equal to the number of
172 ScopedVector<ComplexMatrixF> interf_cov_mats_[kNumFreqBins];
  /external/v8/src/runtime/
runtime-proxy.cc 45 ScopedVector<Handle<Object>> argv(arguments_length);
106 ScopedVector<Handle<Object>> argv(arguments_length);
  /external/v8/test/cctest/
test-cpu-profiler.cc 48 using i::ScopedVector;
607 ScopedVector<v8::Local<v8::String> > names(3);
675 ScopedVector<v8::Local<v8::String> > names(3);
758 ScopedVector<v8::Local<v8::String> > names(3);
    [all...]
test-log.cc 120 i::ScopedVector<char> str(n + 1);
303 i::ScopedVector<uint16_t> utf_source_;
516 i::ScopedVector<char> data(s->Utf8Length() + 1);
  /external/webrtc/webrtc/test/
call_test.h 102 ScopedVector<VideoDecoder> allocated_decoders_;

Completed in 1460 milliseconds

1 2