/external/chromium/third_party/libjingle/overrides/talk/base/ |
scoped_ptr.h | 17 using ::scoped_array;
|
/external/oprofile/libutil++/ |
utility.h | 57 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 &);
|
bfd_support.h | 46 scoped_array<asymbol *> syms;
|
/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/third_party/libjingle/source/talk/base/ |
scoped_ptr.h | 117 // 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...] |
buffer.h | 91 talk_base::scoped_array<char> data(new char[capacity]); 112 scoped_array<char> data_;
|
/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...] |
/external/chromium/base/memory/ |
scoped_ptr.h | 29 // 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...] |
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;
|
/external/chromium/chrome/browser/ui/views/ |
generic_info_view.h | 60 scoped_array<views::Label*> name_views_; 61 scoped_array<views::Textfield*> value_views_;
|
/external/oprofile/libutil++/tests/ |
utility_tests.cpp | 83 scoped_array<A> b(new A[10]); 85 scoped_array<A> a(new A[10]);
|
/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_;
|
/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/chromium/chrome/browser/safe_browsing/ |
bloom_filter.h | 101 scoped_array<char> data_;
|
/external/chromium/net/tools/flip_server/ |
ring_buffer.h | 100 scoped_array<char> buffer_;
|
/external/chromium/chrome/browser/net/ |
service_providers_win.cc | 26 scoped_array<char> namespace_provider_bytes(new char[size]); 61 scoped_array<char> service_provider_bytes(new char[size]);
|
/external/chromium/chrome/browser/policy/ |
policy_path_parser_win.cc | 63 scoped_array<WCHAR> username(new WCHAR[return_length]); 74 scoped_array<WCHAR> machinename(new WCHAR[return_length]);
|
/external/chromium/net/socket/ |
ssl_client_socket_win.h | 164 scoped_array<char> payload_send_buffer_; 175 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...] |
/external/chromium/crypto/ |
rsa_private_key_win.cc | 66 scoped_array<BYTE> blob(new BYTE[blob_size]); 143 scoped_array<uint8> blob(new uint8[blob_length]); 197 scoped_array<uint8> key_info(new uint8[key_info_len]); 214 scoped_array<BYTE> encoded(new BYTE[encoded_length]);
|
/external/chromium/base/ |
environment.cc | 67 scoped_array<wchar_t> value(new wchar_t[value_length]);
|