/external/ceres-solver/include/ceres/internal/ |
D | scoped_ptr.h | 48 template <class C> class scoped_array; variable 194 class scoped_array { 202 explicit scoped_array(C* p = NULL) : array_(p) { } in array_() 206 ~scoped_array() { in ~scoped_array() 243 void swap(scoped_array& p2) { in swap() 264 template <class C2> bool operator==(scoped_array<C2> const& p2) const; 265 template <class C2> bool operator!=(scoped_array<C2> const& p2) const; 268 scoped_array(const scoped_array&); 269 void operator=(const scoped_array&); 274 inline void swap(scoped_array<C>& p1, scoped_array<C>& p2) { in swap() [all …]
|
/external/skia/src/images/ |
D | bmpdecoderhelper.h | 24 template <typename T> class scoped_array { 27 scoped_array(scoped_array const&); 28 scoped_array& operator=(const scoped_array&); 31 explicit scoped_array(T* p = 0) : ptr_(p) {} in ptr_() 32 ~scoped_array() { in ~scoped_array() 100 scoped_array<uint8> colTab_;
|
/external/google-breakpad/src/common/ |
D | scoped_ptr.h | 188 class scoped_array { 197 explicit scoped_array(C* p = NULL) : array_(p) { } in array_() 201 ~scoped_array() { in ~scoped_array() 238 void swap(scoped_array& p2) { in swap() 259 template <class C2> bool operator==(scoped_array<C2> const& p2) const; 260 template <class C2> bool operator!=(scoped_array<C2> const& p2) const; 263 scoped_array(const scoped_array&); 264 void operator=(const scoped_array&); 269 void swap(scoped_array<C>& p1, scoped_array<C>& p2) { in swap() 274 bool operator==(C* p1, const scoped_array<C>& p2) { [all …]
|
D | string_conversion.cc | 123 scoped_array<uint16_t> source_buffer; in UTF16ToUTF8() 140 scoped_array<UTF8> target_buffer(new UTF8[target_capacity]); in UTF16ToUTF8()
|
/external/ceres-solver/internal/ceres/ |
D | linear_least_squares_problems.h | 52 scoped_array<double> b; 53 scoped_array<double> D; 59 scoped_array<double> x; 61 scoped_array<double> x_D;
|
D | cost_function_to_functor_test.cc | 58 scoped_array<double> parameters(new double[num_parameters]); in ExpectCostFunctionsAreEqual() 63 scoped_array<double> residuals(new double[num_residuals]); in ExpectCostFunctionsAreEqual() 64 scoped_array<double> jacobians(new double[num_parameters * num_residuals]); in ExpectCostFunctionsAreEqual() 66 scoped_array<double> actual_residuals(new double[num_residuals]); in ExpectCostFunctionsAreEqual() 67 scoped_array<double> actual_jacobians in ExpectCostFunctionsAreEqual() 70 scoped_array<double*> parameter_blocks( in ExpectCostFunctionsAreEqual() 72 scoped_array<double*> jacobian_blocks( in ExpectCostFunctionsAreEqual() 74 scoped_array<double*> actual_jacobian_blocks( in ExpectCostFunctionsAreEqual()
|
D | program_evaluator.h | 326 scoped_array<double> residual_block_evaluate_scratch; 328 scoped_array<double> gradient; 330 scoped_array<double> residual_block_residuals; 331 scoped_array<double*> jacobian_block_ptrs; 370 scoped_array<EvaluatePreparer> evaluate_preparers_; 371 scoped_array<EvaluateScratch> evaluate_scratch_;
|
D | schur_complement_solver_test.cc | 131 scoped_array<double> b; 132 scoped_array<double> x; 133 scoped_array<double> D; 134 scoped_array<double> sol; 135 scoped_array<double> sol_d;
|
D | triplet_sparse_matrix.h | 121 scoped_array<int> rows_; 122 scoped_array<int> cols_; 123 scoped_array<double> values_;
|
D | block_random_access_dense_matrix.h | 89 scoped_array<double> values_; 90 scoped_array<CellInfo> cell_infos_;
|
D | unsymmetric_linear_solver_test.cc | 127 scoped_array<double> b_; 128 scoped_array<double> D_; 129 scoped_array<double> sol_unregularized_; 130 scoped_array<double> sol_regularized_;
|
D | schur_eliminator.h | 333 scoped_array<double> buffer_; 341 scoped_array<double> chunk_outer_product_buffer_;
|
D | iterative_schur_complement_solver_test.cc | 115 scoped_array<double> b_; 116 scoped_array<double> D_;
|
D | parameter_block.h | 361 mutable scoped_array<double> local_parameterization_jacobian_; 387 scoped_array<double> upper_bounds_; 388 scoped_array<double> lower_bounds_;
|
D | implicit_schur_complement_test.cc | 183 scoped_array<double> b_; 184 scoped_array<double> D_;
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
D | cpp_file.h | 82 scoped_array<scoped_ptr<MessageGenerator> > message_generators_; 83 scoped_array<scoped_ptr<EnumGenerator> > enum_generators_; 84 scoped_array<scoped_ptr<ServiceGenerator> > service_generators_; 85 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
|
D | cpp_message.h | 162 scoped_array<scoped_ptr<MessageGenerator> > nested_generators_; 163 scoped_array<scoped_ptr<EnumGenerator> > enum_generators_; 164 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
|
/external/clang/test/SemaCXX/ |
D | new-delete.cpp | 471 template <class C> struct scoped_array { struct 472 scoped_array(C* p = __null); 475 Foo() : a_(new scoped_array<int>[5]) { } in Foo() 476 scoped_array< scoped_array<int> > a_;
|
/external/protobuf/src/google/protobuf/stubs/ |
D | common.h | 436 template <class C> class scoped_array; variable 533 class scoped_array { 542 explicit scoped_array(C* p = NULL) : array_(p) { } in array_() 546 ~scoped_array() { in ~scoped_array() 583 void swap(scoped_array& p2) { in swap() 604 template <class C2> bool operator==(scoped_array<C2> const& p2) const; 605 template <class C2> bool operator!=(scoped_array<C2> const& p2) const; 608 scoped_array(const scoped_array&); 609 void operator=(const scoped_array&); 617 using internal::scoped_array;
|
/external/google-breakpad/src/common/mac/ |
D | string_utilities.cc | 35 using google_breakpad::scoped_array; 46 scoped_array<UInt8> buffer(new UInt8[maxUTF8Length + 1]); in ConvertToString()
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
D | javamicro_field.h | 85 scoped_array<scoped_ptr<FieldGenerator> > field_generators_; 86 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
|
/external/protobuf/src/google/protobuf/compiler/java/ |
D | java_file.h | 99 scoped_array<scoped_ptr<MessageGenerator> > message_generators_; 100 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
|
/external/google-breakpad/src/processor/ |
D | static_contained_range_map_unittest.cc | 171 scoped_array<char> serialized_data_; 240 scoped_array<char> serialized_data; in TEST_F() 260 scoped_array<char> serialized_data; in TEST_F()
|
D | module_serializer.cc | 143 scoped_array<char> symbol_data(Serialize(*basic_module, &size)); in SerializeModuleAndLoadIntoFastResolver() 197 scoped_array<char> buffer(new char[symbol_data.size() + 1]); in SerializeSymbolFileData()
|
/external/protobuf/src/google/protobuf/io/ |
D | zero_copy_stream_impl_lite.h | 235 scoped_array<uint8> buffer_; 324 scoped_array<uint8> buffer_;
|