/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/ |
scoped_array.hpp | 11 // http://www.boost.org/libs/smart_ptr/scoped_array.htm 34 // scoped_array extends scoped_ptr to arrays. Deletion of the array pointed to 35 // is guaranteed, either on destruction of the scoped_array or via an explicit 38 template<class T> class scoped_array // noncopyable class in namespace:boost 44 scoped_array(scoped_array const &); 45 scoped_array & operator=(scoped_array const &); 47 typedef scoped_array<T> this_type; 49 void operator==( scoped_array const& ) const 56 explicit scoped_array( T * p = 0 ) : px( p ) \/\/ never throws function in class:boost::scoped_array [all...] |
/external/skia/src/images/ |
bmpdecoderhelper.h | 24 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_;
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/ |
scoped_array.hpp | 11 // http://www.boost.org/libs/smart_ptr/scoped_array.htm 14 #include <boost/smart_ptr/scoped_array.hpp>
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/ |
scoped_ptr.h | 46 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr. 49 template <class C> class scoped_array; 138 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate 141 // As with scoped_ptr<C>, a scoped_array<C> either points to an object 142 // or is NULL. A scoped_array<C> owns the object that it points to. 144 // Size: sizeof(scoped_array<C>) == sizeof(C*) 146 class scoped_array { class in namespace:google::protobuf::internal 153 // There is no way to create an uninitialized scoped_array. 155 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google::protobuf::internal::scoped_array 159 ~scoped_array() { [all...] |
/external/ceres-solver/include/ceres/internal/ |
scoped_ptr.h | 33 // 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(C* p = NULL) : array_(p) { function in class:ceres::internal::scoped_array [all...] |
/external/google-breakpad/src/common/ |
scoped_ptr.h | 53 // Example usage (scoped_array): 55 // scoped_array<Foo> foo(new Foo[100]); 65 // scoped_array, scoped_ptr_malloc. 178 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate 181 // As with scoped_ptr<C>, a scoped_array<C> either points to an object 182 // or is NULL. A scoped_array<C> owns the object that it points to. 183 // scoped_array<T> is thread-compatible, and once you index into it, 186 // Size: sizeof(scoped_array<C>) == sizeof(C*) 188 class scoped_array { class in namespace:google_breakpad 195 // There is no way to create an uninitialized scoped_array 197 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google_breakpad::scoped_array [all...] |
/external/ceres-solver/internal/ceres/ |
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;
|
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;
|
cost_function_to_functor_test.cc | 58 scoped_array<double> parameters(new double[num_parameters]); 63 scoped_array<double> residuals(new double[num_residuals]); 64 scoped_array<double> jacobians(new double[num_parameters * num_residuals]); 66 scoped_array<double> actual_residuals(new double[num_residuals]); 67 scoped_array<double> actual_jacobians 70 scoped_array<double*> parameter_blocks( 72 scoped_array<double*> jacobian_blocks( 74 scoped_array<double*> actual_jacobian_blocks(
|
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_;
|
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_;
|
block_random_access_dense_matrix.h | 89 scoped_array<double> values_; 90 scoped_array<CellInfo> cell_infos_;
|
iterative_schur_complement_solver_test.cc | 115 scoped_array<double> b_; 116 scoped_array<double> D_;
|
triplet_sparse_matrix.h | 121 scoped_array<int> rows_; 122 scoped_array<int> cols_; 123 scoped_array<double> values_;
|
scratch_evaluate_preparer.h | 63 scoped_array<double> jacobian_scratch_;
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
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_;
|
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/google-breakpad/src/common/mac/ |
string_utilities.cc | 35 using google_breakpad::scoped_array; 46 scoped_array<UInt8> buffer(new UInt8[maxUTF8Length + 1]);
|
/external/protobuf/src/google/protobuf/compiler/java/ |
java_file.h | 99 scoped_array<scoped_ptr<MessageGenerator> > message_generators_; 100 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
|
/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_field.h | 85 scoped_array<scoped_ptr<FieldGenerator> > field_generators_; 86 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
|
/external/protobuf/src/google/protobuf/stubs/ |
common.h | 433 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr. 436 template <class C> class scoped_array; 525 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate 528 // As with scoped_ptr<C>, a scoped_array<C> either points to an object 529 // or is NULL. A scoped_array<C> owns the object that it points to. 531 // Size: sizeof(scoped_array<C>) == sizeof(C*) 533 class scoped_array { class in namespace:google::protobuf::internal 540 // There is no way to create an uninitialized scoped_array. 542 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google::protobuf::internal::scoped_array 546 ~scoped_array() { [all...] |
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/ |
common.h | 433 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr. 436 template <class C> class scoped_array; 525 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate 528 // As with scoped_ptr<C>, a scoped_array<C> either points to an object 529 // or is NULL. A scoped_array<C> owns the object that it points to. 531 // Size: sizeof(scoped_array<C>) == sizeof(C*) 533 class scoped_array { class in namespace:google::protobuf::internal 540 // There is no way to create an uninitialized scoped_array. 542 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google::protobuf::internal::scoped_array 546 ~scoped_array() { [all...] |
/prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/ |
common.h | 433 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr. 436 template <class C> class scoped_array; 525 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate 528 // As with scoped_ptr<C>, a scoped_array<C> either points to an object 529 // or is NULL. A scoped_array<C> owns the object that it points to. 531 // Size: sizeof(scoped_array<C>) == sizeof(C*) 533 class scoped_array { class in namespace:google::protobuf::internal 540 // There is no way to create an uninitialized scoped_array. 542 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google::protobuf::internal::scoped_array 546 ~scoped_array() { [all...] |
/prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/ |
common.h | 433 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr. 436 template <class C> class scoped_array; 525 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate 528 // As with scoped_ptr<C>, a scoped_array<C> either points to an object 529 // or is NULL. A scoped_array<C> owns the object that it points to. 531 // Size: sizeof(scoped_array<C>) == sizeof(C*) 533 class scoped_array { class in namespace:google::protobuf::internal 540 // There is no way to create an uninitialized scoped_array. 542 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google::protobuf::internal::scoped_array 546 ~scoped_array() { [all...] |
/prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/ |
common.h | 433 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr. 436 template <class C> class scoped_array; 525 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate 528 // As with scoped_ptr<C>, a scoped_array<C> either points to an object 529 // or is NULL. A scoped_array<C> owns the object that it points to. 531 // Size: sizeof(scoped_array<C>) == sizeof(C*) 533 class scoped_array { class in namespace:google::protobuf::internal 540 // There is no way to create an uninitialized scoped_array. 542 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google::protobuf::internal::scoped_array 546 ~scoped_array() { [all...] |