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

1 2

  /external/skia/src/images/
bmpdecoderhelper.h 31 template <typename T> class scoped_array { class
34 scoped_array(scoped_array const&);
35 scoped_array& operator=(const scoped_array&);
38 explicit scoped_array(T* p = 0) : ptr_(p) {} function in class:scoped_array
39 ~scoped_array() {
107 scoped_array<uint8> colTab_;
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_file.h 80 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_;
cpp_message.h 158 scoped_array<scoped_ptr<MessageGenerator> > nested_generators_;
159 scoped_array<scoped_ptr<EnumGenerator> > enum_generators_;
160 scoped_array<scoped_ptr<ExtensionGenerator> > extension_generators_;
cpp_field.h 154 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
  /external/chromium/googleurl/base/
scoped_ptr.h 132 // 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 & b)
    [all...]
logging.cc 207 scoped_array<wchar_t> cmdline(new wchar_t[charcount]);
377 scoped_array<char> buf(new char[charcount]);
  /external/chromium/base/
scoped_ptr.h 29 // Example usage (scoped_array):
31 // scoped_array<Foo> foo(new Foo[100]);
41 // scoped_array, scoped_ptr_malloc.
152 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
155 // As with scoped_ptr<C>, a scoped_array<C> either points to an object
156 // or is NULL. A scoped_array<C> owns the object that it points to.
157 // scoped_array<T> is thread-compatible, and once you index into it,
160 // Size: sizeof(scoped_array<C>) == sizeof(C*)
162 class scoped_array { class
169 // There is no way to create an uninitialized scoped_array
171 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:scoped_array
    [all...]
scoped_ptr_unittest.cc 101 scoped_array<ConDecLogger> scoper(new ConDecLogger[kNumLoggers]);
116 scoped_array<ConDecLogger> scoper;
145 scoped_array<ConDecLogger> scoper1;
146 scoped_array<ConDecLogger> scoper2;
shared_memory_unittest.cc 179 scoped_array<PlatformThreadHandle> thread_handles;
180 scoped_array<MultipleThreadMain*> thread_delegates;
239 scoped_array<SharedMemory> memories(new SharedMemory[count]);
240 scoped_array<int*> pointers(new int*[count]);
sys_info_win.cc 61 scoped_array<wchar_t> value(new wchar_t[value_length]);
win_util.cc 122 scoped_array<BYTE> token_user_bytes(new BYTE[size]);
177 scoped_array<BYTE> user_bytes(new BYTE[size]);
212 scoped_array<char> token_groups_chars(new char[size]);
process_util_posix.cc 435 scoped_array<char*> argv_cstr(new char*[argv.size() + 1]);
672 scoped_array<char*> argv_cstr(new char*[argv.size() + 1]);
  /external/protobuf/src/google/protobuf/compiler/java/
java_field.h 85 scoped_array<scoped_ptr<FieldGenerator> > field_generators_;
86 scoped_array<scoped_ptr<FieldGenerator> > extension_generators_;
java_message.cc 397 scoped_array<const FieldDescriptor*> sorted_fields(
804 scoped_array<const FieldDescriptor*> sorted_fields(
    [all...]
  /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_;
javamicro_message.cc 233 scoped_array<const FieldDescriptor*> sorted_fields(
280 scoped_array<const FieldDescriptor*> sorted_fields(
  /external/chromium/net/tools/flip_server/
ring_buffer.h 100 scoped_array<char> buffer_;
  /external/chromium/net/socket/
ssl_client_socket_win.h 144 scoped_array<char> payload_send_buffer_;
155 scoped_array<char> recv_buffer_;
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream_impl_lite.h 234 scoped_array<uint8> buffer_;
323 scoped_array<uint8> buffer_;
  /external/protobuf/src/google/protobuf/stubs/
common.h 402 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
405 template <class C> class scoped_array;
494 // scoped_array<C> is like scoped_ptr<C>, except that the caller must allocate
497 // As with scoped_ptr<C>, a scoped_array<C> either points to an object
498 // or is NULL. A scoped_array<C> owns the object that it points to.
500 // Size: sizeof(scoped_array<C>) == sizeof(C*)
502 class scoped_array { class in namespace:google::protobuf::internal
509 // There is no way to create an uninitialized scoped_array.
511 explicit scoped_array(C* p = NULL) : array_(p) { } function in class:google::protobuf::internal::scoped_array
515 ~scoped_array() {
    [all...]
strutil.cc 403 scoped_array<char> unescaped(new char[src.size() + 1]);
411 scoped_array<char> unescaped(new char[src.size() + 1]);
489 scoped_array<char> dest(new char[dest_length]);
500 scoped_array<char> dest(new char[dest_length]);
509 scoped_array<char> dest(new char[dest_length]);
    [all...]
  /external/chromium/base/crypto/
rsa_private_key_win.cc 60 scoped_array<BYTE> blob(new BYTE[blob_size]);
133 scoped_array<uint8> blob(new uint8[blob_length]);
188 scoped_array<uint8> key_info(new uint8[key_info_len]);
205 scoped_array<BYTE> encoded(new BYTE[encoded_length]);
  /external/chromium/net/disk_cache/
entry_impl.h 183 scoped_array<char> user_buffers_[kNumStreams]; // Store user data.
  /external/chromium/net/tools/dump_cache/
upgrade.cc 127 scoped_array<char> in_buffer_;
128 scoped_array<char> out_buffer_;
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface_unittest.cc 290 scoped_array<const char*> argv(new const char*[args.size()]);
    [all...]

Completed in 1687 milliseconds

1 2