HomeSort by relevance Sort by last modified time
    Searched refs:ScopedVector (Results 1 - 25 of 36) 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 {
39 ScopedVector() {}
40 ~ScopedVector() { clear(); }
41 ScopedVector(ScopedVector&& other) { swap(other); }
43 ScopedVector& operator=(ScopedVector&& rhs) {
81 void swap(ScopedVector<T>& other) { v_.swap(other.v_); }
106 // Lets the ScopedVector take ownership of |x|
    [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;
  /external/libmojo/mojo/edk/js/
drain_data.h 56 ScopedVector<DataBuffer> data_buffers_;
  /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/src/
vector.h 164 class ScopedVector : public Vector<T> {
166 explicit ScopedVector(int length) : Vector<T>(NewArray<T>(length), length) { }
167 ~ScopedVector() {
172 DISALLOW_IMPLICIT_CONSTRUCTORS(ScopedVector);
flags.cc 483 ScopedVector<char> copy0(len + 1);
498 ScopedVector<char*> argv(argc);
log.cc 244 ScopedVector<char> perf_dump_name(bufferSize);
343 ScopedVector<char> ll_name(static_cast<int>(len + sizeof(kLogExt)));
    [all...]
perf-jit.cc 122 ScopedVector<char> perf_dump_name(bufferSize);
  /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/libmojo/mojo/message_pump/
handle_watcher_perftest.cc 116 ScopedVector<TestData> data_vector;
177 ScopedVector<TestData> data_vector;
handle_watcher_unittest.cc 413 ScopedVector<TestData> data_vector;
465 ScopedVector<base::Thread> threads;
  /external/v8/src/regexp/
regexp-utils.cc 80 ScopedVector<Handle<Object>> argv(argc);
109 ScopedVector<Handle<Object>> argv(argc);
  /external/v8/src/runtime/
runtime-proxy.cc 45 ScopedVector<Handle<Object>> argv(arguments_length);
101 ScopedVector<Handle<Object>> argv(arguments_length);
runtime-function.cc 273 ScopedVector<Handle<Object>> argv(argc);
  /external/webrtc/webrtc/test/
call_test.h 102 ScopedVector<VideoDecoder> allocated_decoders_;
  /external/libchrome/base/trace_event/
trace_buffer.cc 238 ScopedVector<TraceBufferChunk> chunks_;
  /external/v8/src/builtins/
builtins-function.cc 180 ScopedVector<Handle<Object>> argv(std::max(0, args.length() - 2));

Completed in 1672 milliseconds

1 2