Searched refs:scoped_array (Results 1 - 25 of 174) sorted by relevance

1234567

/external/chromium_org/tools/clang/rewrite_scoped_array/tests/
H A Dtest-original.cc5 template <class T> class scoped_array { class
12 scoped_array<int> test_field_;
15 scoped_array<int> TestFunction(scoped_array<int> x, scoped_array<int>) {
16 scoped_array<scoped_array<int>(scoped_array<int> test, scoped_array<int>)> y;
17 scoped_array<in
[all...]
H A Dtest-expected.cc5 template <class T> class scoped_array { class
16 scoped_ptr<scoped_array<int>(scoped_array<int> test, scoped_array<int>)[]> y;
/external/chromium/third_party/libjingle/overrides/talk/base/
H A Dscoped_ptr.h17 using ::scoped_array;
/external/ceres-solver/internal/ceres/
H A Dlinear_least_squares_problems.h52 scoped_array<double> b;
53 scoped_array<double> D;
59 scoped_array<double> x;
61 scoped_array<double> x_D;
H A Dblock_random_access_dense_matrix.h89 scoped_array<double> values_;
90 scoped_array<CellInfo> cell_infos_;
H A Dscratch_evaluate_preparer.h63 scoped_array<double> jacobian_scratch_;
H A Dtriplet_sparse_matrix.h121 scoped_array<int> rows_;
122 scoped_array<int> cols_;
123 scoped_array<double> values_;
/external/chromium_org/third_party/skia/src/images/
H A Dbmpdecoderhelper.h24 template <typename T> class scoped_array { class
27 scoped_array(scoped_array const&);
28 scoped_array& operator=(const scoped_array&);
31 explicit scoped_array(T* p = 0) : ptr_(p) {} function in class:scoped_array
32 ~scoped_array() {
100 scoped_array<uint8> colTab_;
/external/oprofile/libutil++/
H A Dutility.h57 template<typename T> class scoped_array { class
59 explicit scoped_array(T * p = 0) : p_(p) {} function in class:scoped_array
60 ~scoped_array() { delete [] p_; }
72 void swap(scoped_array & sp) {
79 scoped_array & operator=(scoped_array const &);
80 scoped_array(scoped_array const &);
/external/skia/src/images/
H A Dbmpdecoderhelper.h24 template <typename T> class scoped_array { class
27 scoped_array(scoped_array const&);
28 scoped_array& operator=(const scoped_array&);
31 explicit scoped_array(T* p = 0) : ptr_(p) {} function in class:scoped_array
32 ~scoped_array() {
100 scoped_array<uint8> colTab_;
/external/webrtc/src/modules/audio_processing/
H A Daudio_buffer.h73 scoped_array<AudioChannel> channels_;
74 scoped_array<SplitAudioChannel> split_channels_;
75 scoped_array<AudioChannel> mixed_channels_;
77 scoped_array<AudioChannel> mixed_low_pass_channels_;
78 scoped_array<AudioChannel> low_pass_reference_channels_;
/external/ceres-solver/include/ceres/internal/
H A Dscoped_ptr.h33 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
48 template <class C> class scoped_array;
184 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
187 // As with scoped_ptr<C>, a scoped_array<C> either points to an object
188 // or is NULL. A scoped_array<C> owns the object that it points to.
189 // scoped_array<T> is thread-compatible, and once you index into it,
192 // Size: sizeof(scoped_array<C>) == sizeof(C*)
194 class scoped_array { class in namespace:ceres::internal
200 // There is no way to create an uninitialized scoped_array.
202 explicit scoped_array( function in class:ceres::internal::scoped_array
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_file.h81 scoped_array<scoped_ptr<MessageGenerator> > message_generators_;
82 scoped_array<scoped_ptr<EnumGenerator> > enum_generators_;
83 scoped_array<scoped_ptr<ServiceGenerator> > service_generators_;
84 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
/external/protobuf/src/google/protobuf/compiler/cpp/
H A Dcpp_file.h80 scoped_array<scoped_ptr<MessageGenerator> > message_generators_;
81 scoped_array<scoped_ptr<EnumGenerator> > enum_generators_;
82 scoped_array<scoped_ptr<ServiceGenerator> > service_generators_;
83 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dscoped_ptr.h117 // scoped_array extends scoped_ptr to arrays. Deletion of the array pointed to
118 // is guaranteed, either on destruction of the scoped_array or via an explicit
122 class scoped_array { class in namespace:talk_base
127 scoped_array(scoped_array const &);
128 scoped_array & operator=(scoped_array const &);
134 explicit scoped_array(T* p = NULL) : ptr(p) {} function in class:talk_base::scoped_array
136 ~scoped_array() {
147 // Delete last, in case arr destructor indirectly results in ~scoped_array
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dscoped_ptr.h117 // scoped_array extends scoped_ptr to arrays. Deletion of the array pointed to
118 // is guaranteed, either on destruction of the scoped_array or via an explicit
122 class scoped_array { class in namespace:webrtc
127 scoped_array(scoped_array const &);
128 scoped_array & operator=(scoped_array const &);
134 explicit scoped_array(T* p = NULL) : ptr(p) {} function in class:webrtc::scoped_array
136 ~scoped_array() {
147 // Delete last, in case arr destructor indirectly results in ~scoped_array
[all...]
/external/chromium/googleurl/base/
H A Dscoped_ptr.h132 // scoped_array extends scoped_ptr to arrays. Deletion of the array pointed to
133 // is guaranteed, either on destruction of the scoped_array or via an explicit
137 class scoped_array { class
142 scoped_array(scoped_array const &);
143 scoped_array & operator=(scoped_array const &);
149 explicit scoped_array(T* p = 0) : ptr(p) {} function in class:scoped_array
151 ~scoped_array() {
183 void swap(scoped_array
[all...]
/external/chromium/base/memory/
H A Dscoped_ptr.h29 // Example usage (scoped_array):
31 // scoped_array<Foo> foo(new Foo[100]);
42 // scoped_array, scoped_ptr_malloc.
155 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
158 // As with scoped_ptr<C>, a scoped_array<C> either points to an object
159 // or is NULL. A scoped_array<C> owns the object that it points to.
160 // scoped_array<T> is thread-compatible, and once you index into it,
163 // Size: sizeof(scoped_array<C>) == sizeof(C*)
165 class scoped_array { class
172 // There is no way to create an uninitialized scoped_array
174 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:scoped_array
[all...]
/external/chromium_org/third_party/cld/base/
H A Dscoped_ptr.h10 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
30 template <class C> class scoped_array;
168 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
171 // As with scoped_ptr<C>, a scoped_array<C> either points to an object
172 // or is NULL. A scoped_array<C> owns the object that it points to.
173 // scoped_array<T> is thread-compatible, and once you index into it,
176 // Size: sizeof(scoped_array<C>) == sizeof(C*)
178 class scoped_array { class
185 // There is no way to create an uninitialized scoped_array.
187 explicit scoped_array( function in class:scoped_array
[all...]
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dgtkvideorenderer.h59 talk_base::scoped_array<uint8> image_;
H A Dcarbonvideorenderer.h60 talk_base::scoped_array<uint8> image_;
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dscoped_ptr.h124 // scoped_array extends scoped_ptr to arrays. Deletion of the array pointed to
125 // is guaranteed, either on destruction of the scoped_array or via an explicit
129 class scoped_array { class in namespace:talk_base
134 scoped_array(scoped_array const &);
135 scoped_array & operator=(scoped_array const &);
141 explicit scoped_array(T* p = NULL) : ptr(p) {} function in class:talk_base::scoped_array
143 ~scoped_array() {
154 // Delete last, in case arr destructor indirectly results in ~scoped_array
[all...]
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dnormalizedunicodetext.h61 scoped_array<WCHAR> text_;
/external/chromium/chrome/browser/ui/views/
H A Dgeneric_info_view.h60 scoped_array<views::Label*> name_views_;
61 scoped_array<views::Textfield*> value_views_;
/external/oprofile/libutil++/tests/
H A Dutility_tests.cpp83 scoped_array<A> b(new A[10]);
85 scoped_array<A> a(new A[10]);

Completed in 1492 milliseconds

1234567