HomeSort by relevance Sort by last modified time
    Searched full:scoped_array (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/protobuf/src/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...]
  /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/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...]
string_conversion.cc 123 scoped_array<uint16_t> source_buffer;
140 scoped_array<UTF8> target_buffer(new UTF8[target_capacity]);
  /cts/hostsidetests/jvmti/base/jni/
tagging.cpp 51 ScopedLongArrayRO scoped_array(env);
53 scoped_array.reset(searchTags);
55 const jlong* tag_ptr = scoped_array.get();
67 jvmtiError ret = jvmti_env->GetObjectsWithTags(scoped_array.size(),
  /external/google-breakpad/src/common/mac/
string_utilities.cc 35 using google_breakpad::scoped_array;
46 scoped_array<UInt8> buffer(new UInt8[maxUTF8Length + 1]);
  /art/test/903-hello-tagging/
tagging.cc 38 ScopedLongArrayRO scoped_array(env);
40 scoped_array.reset(searchTags);
42 const jlong* tag_ptr = scoped_array.get();
54 jvmtiError ret = jvmti_env->GetObjectsWithTags(scoped_array.size(),
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.h 148 google::protobuf::scoped_array<google::protobuf::scoped_ptr<MessageGenerator> > message_generators_;
149 google::protobuf::scoped_array<google::protobuf::scoped_ptr<EnumGenerator> > enum_generators_;
150 google::protobuf::scoped_array<google::protobuf::scoped_ptr<ServiceGenerator> > service_generators_;
151 google::protobuf::scoped_array<google::protobuf::scoped_ptr<ExtensionGenerator> > extension_generators_;
cpp_message.h 193 google::protobuf::scoped_array<google::protobuf::scoped_ptr<MessageGenerator> > nested_generators_;
194 google::protobuf::scoped_array<google::protobuf::scoped_ptr<EnumGenerator> > enum_generators_;
195 google::protobuf::scoped_array<google::protobuf::scoped_ptr<ExtensionGenerator> > extension_generators_;
  /external/protobuf/src/google/protobuf/compiler/java/
java_file.h 103 google::protobuf::scoped_array<google::protobuf::scoped_ptr<MessageGenerator> > message_generators_;
104 google::protobuf::scoped_array<google::protobuf::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/eigen/Eigen/src/SparseCore/
CompressedStorage.h 182 internal::scoped_array<Scalar> newValues(m_allocatedSize);
183 internal::scoped_array<StorageIndex> newIndices(m_allocatedSize);
234 internal::scoped_array<Scalar> newValues(size);
235 internal::scoped_array<StorageIndex> newIndices(size);
  /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...]
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_field.h 185 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
186 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
  /external/clang/test/SemaCXX/
new-delete.cpp 471 template <class C> struct scoped_array { struct in namespace:PR12061
472 scoped_array(C* p = __null);
475 Foo() : a_(new scoped_array<int>[5]) { }
476 scoped_array< scoped_array<int> > a_;
  /external/google-breakpad/src/processor/
static_contained_range_map_unittest.cc 171 scoped_array<char> serialized_data_;
240 scoped_array<char> serialized_data;
260 scoped_array<char> serialized_data;
module_serializer.cc 143 scoped_array<char> symbol_data(Serialize(*basic_module, &size));
197 scoped_array<char> buffer(new char[symbol_data.size() + 1]);
module_comparer.cc 60 scoped_array<char> buffer(new char[symbol_data.size() + 1]);
69 scoped_array<char> serialized_data(
  /external/google-breakpad/src/client/linux/minidump_writer/
linux_dumper_unittest_helper.cc 85 google_breakpad::scoped_array<pthread_t> threads(new pthread_t[num_threads]);
  /system/gatekeeper/include/gatekeeper/
UniquePtr.h 45 // and boost::scoped_array).
  /external/protobuf/conformance/
conformance_test_runner.cc 71 using google::protobuf::internal::scoped_array;
186 scoped_array<char> executable(new char[executable_.size() + 1]);
  /external/google-breakpad/src/client/ios/handler/
ios_exception_minidump_generator.mm 177 scoped_array<uint8_t> stack_memory(new uint8_t[stack_size]);

Completed in 1387 milliseconds

1 2 3