Searched refs:scoped_ptr_malloc (Results 1 - 25 of 88) sorted by relevance

1234

/external/chromium_org/tools/clang/rewrite_scoped_ptr_ctor_null/tests/
H A Dtest-expected.cc9 scoped_ptr_malloc<int> d;
28 scoped_ptr_malloc<int> d;
29 scoped_ptr_malloc<int> e;
30 scoped_ptr_malloc<int> f;
H A Dtest-original.cc9 scoped_ptr_malloc<int> d(NULL);
29 scoped_ptr_malloc<int> d;
30 scoped_ptr_malloc<int> e;
31 scoped_ptr_malloc<int> f;
/external/chromium_org/crypto/
H A Dscoped_nss_types.h34 typedef scoped_ptr_malloc<
38 typedef scoped_ptr_malloc<
40 typedef scoped_ptr_malloc<
43 typedef scoped_ptr_malloc<
45 typedef scoped_ptr_malloc<
48 typedef scoped_ptr_malloc<
51 typedef scoped_ptr_malloc<
55 typedef scoped_ptr_malloc<
59 typedef scoped_ptr_malloc<
/external/chromium/crypto/
H A Dscoped_nss_types.h33 typedef scoped_ptr_malloc<
37 typedef scoped_ptr_malloc<
39 typedef scoped_ptr_malloc<
41 typedef scoped_ptr_malloc<
45 typedef scoped_ptr_malloc<
/external/chromium_org/net/cert/
H A Dscoped_nss_types.h21 typedef scoped_ptr_malloc<CERTCertificate, FreeCERTCertificate>
/external/chromium/net/base/
H A Dscoped_cert_chain_context.h17 // be passed as a template argument to scoped_ptr_malloc.
25 typedef scoped_ptr_malloc<const CERT_CHAIN_CONTEXT,
/external/chromium_org/ui/gfx/
H A Dscoped_gobject.h29 typedef scoped_ptr_malloc<T, GObjectUnrefer<T> > Type;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dscoped_ptr.h17 // scoped_ptr_malloc added in by Google. When one of
19 // calls free(). scoped_ptr_malloc<char> is likely to see much more
188 // scoped_ptr_malloc<> is similar to scoped_ptr<>, but it accepts a
191 template<typename T, void (*FF)(void*) = free> class scoped_ptr_malloc { class in namespace:talk_base
196 scoped_ptr_malloc(scoped_ptr_malloc const &);
197 scoped_ptr_malloc & operator=(scoped_ptr_malloc const &);
203 explicit scoped_ptr_malloc(T* p = 0): ptr(p) {} function in class:talk_base::scoped_ptr_malloc
205 ~scoped_ptr_malloc() {
[all...]
/external/webrtc/src/system_wrappers/interface/
H A Dscoped_ptr.h17 // scoped_ptr_malloc added in by Google. When one of
19 // calls free(). scoped_ptr_malloc<char> is likely to see much more
188 // scoped_ptr_malloc<> is similar to scoped_ptr<>, but it accepts a
191 template<typename T, void (*FF)(void*) = free> class scoped_ptr_malloc { class in namespace:webrtc
196 scoped_ptr_malloc(scoped_ptr_malloc const &);
197 scoped_ptr_malloc & operator=(scoped_ptr_malloc const &);
203 explicit scoped_ptr_malloc(T* p = 0): ptr(p) {} function in class:webrtc::scoped_ptr_malloc
205 ~scoped_ptr_malloc() {
[all...]
/external/chromium/googleurl/base/
H A Dscoped_ptr.h219 // passed as a template argument to scoped_ptr_malloc below.
227 // scoped_ptr_malloc<> is similar to scoped_ptr<>, but it accepts a
231 class scoped_ptr_malloc { class
236 scoped_ptr_malloc(scoped_ptr_malloc const &);
237 scoped_ptr_malloc & operator=(scoped_ptr_malloc const &);
243 explicit scoped_ptr_malloc(T* p = 0): ptr(p) {} function in class:scoped_ptr_malloc
245 ~scoped_ptr_malloc() {
281 void swap(scoped_ptr_malloc
313 operator ==(T* p, const scoped_ptr_malloc<T,FP>& b) argument
318 operator !=(T* p, const scoped_ptr_malloc<T,FP>& b) argument
[all...]
/external/chromium/base/memory/
H A Dscoped_ptr.h42 // scoped_array, scoped_ptr_malloc.
261 // passed as a template argument to scoped_ptr_malloc below.
269 // scoped_ptr_malloc<> is similar to scoped_ptr<>, but it accepts a
273 class scoped_ptr_malloc { class
284 explicit scoped_ptr_malloc(C* p = NULL): ptr_(p) {} function in class:scoped_ptr_malloc
287 ~scoped_ptr_malloc() {
319 // These return whether a scoped_ptr_malloc and a plain pointer refer
332 void swap(scoped_ptr_malloc & b) {
352 // no reason to use these: each scoped_ptr_malloc should have its own object
354 bool operator==(scoped_ptr_malloc<C
374 operator ==(C* p, const scoped_ptr_malloc<C, FP>& b) argument
379 operator !=(C* p, const scoped_ptr_malloc<C, FP>& b) argument
[all...]
/external/chromium_org/third_party/cld/base/
H A Dscoped_ptr.h10 // scoped_array, scoped_ptr_malloc, and make_scoped_ptr.
29 template <class C, class Free> class scoped_ptr_malloc;
284 // passed as a template argument to scoped_ptr_malloc below.
292 // scoped_ptr_malloc<> is similar to scoped_ptr<>, but it accepts a
296 class scoped_ptr_malloc { class
307 explicit scoped_ptr_malloc(): ptr_(NULL) { } function in class:scoped_ptr_malloc
311 explicit scoped_ptr_malloc(must_be_C* p): ptr_(p) { } function in class:scoped_ptr_malloc
314 explicit scoped_ptr_malloc(void *p): ptr_(static_cast<C*>(p)) { } function in class:scoped_ptr_malloc
317 ~scoped_ptr_malloc() {
364 // These return whether a scoped_ptr_malloc an
419 operator ==(C* p, const scoped_ptr_malloc<C, FP>& b) argument
424 operator !=(C* p, const scoped_ptr_malloc<C, FP>& b) argument
[all...]
/external/chromium_org/media/cdm/ppapi/
H A Dffmpeg_cdm_video_decoder.h50 scoped_ptr_malloc<AVCodecContext, ScopedPtrAVFreeContext> codec_context_;
51 scoped_ptr_malloc<AVFrame, ScopedPtrAVFreeFrame> av_frame_;
H A Dffmpeg_cdm_audio_decoder.h67 scoped_ptr_malloc<AVCodecContext, ScopedPtrAVFreeContext> codec_context_;
68 scoped_ptr_malloc<AVFrame, ScopedPtrAVFreeFrame> av_frame_;
/external/chromium_org/base/
H A Dtask_runner_util_unittest.cc55 scoped_ptr_malloc<Foo, FreeFooFunctor> CreateScopedFoo() {
56 return scoped_ptr_malloc<Foo, FreeFooFunctor>(new Foo);
59 void ExpectScopedFoo(scoped_ptr_malloc<Foo, FreeFooFunctor> foo) {
61 scoped_ptr_malloc<Foo, FreeFooFunctor> local_foo(foo.Pass());
/external/chromium_org/base/process/
H A Dprocess_info_mac.cc24 scoped_ptr_malloc<struct kinfo_proc>
/external/chromium_org/media/filters/
H A Dffmpeg_glue.h76 scoped_ptr_malloc<AVIOContext, ScopedPtrAVFree> avio_context_;
H A Dffmpeg_video_decoder.h84 scoped_ptr_malloc<AVCodecContext, ScopedPtrAVFreeContext> codec_context_;
85 scoped_ptr_malloc<AVFrame, ScopedPtrAVFreeFrame> av_frame_;
H A Dffmpeg_audio_decoder.h72 scoped_ptr_malloc<AVCodecContext, ScopedPtrAVFreeContext> codec_context_;
92 scoped_ptr_malloc<AVFrame, ScopedPtrAVFreeFrame> av_frame_;
/external/chromium_org/sandbox/win/src/
H A Dacl.h18 scoped_ptr_malloc<TOKEN_DEFAULT_DACL>* default_dacl);
H A Dacl.cc15 scoped_ptr_malloc<TOKEN_DEFAULT_DACL>* default_dacl) {
62 scoped_ptr_malloc<TOKEN_DEFAULT_DACL> default_dacl;
84 scoped_ptr_malloc<TOKEN_USER> token_user_ptr(token_user);
/external/chromium_org/base/memory/
H A Dscoped_ptr.h91 // implementation of the scoped_ptr class and scoped_ptr_malloc (deprecated).
575 // scoped_ptr_malloc<> is similar to scoped_ptr<>, but it accepts a
579 class scoped_ptr_malloc { class
580 MOVE_ONLY_TYPE_FOR_CPP_03(scoped_ptr_malloc, RValue)
592 explicit scoped_ptr_malloc(C* p = NULL): ptr_(p) {} function in class:scoped_ptr_malloc
595 scoped_ptr_malloc(RValue rvalue) function in class:scoped_ptr_malloc
600 ~scoped_ptr_malloc() {
605 scoped_ptr_malloc& operator=(RValue rhs) {
640 // Allow scoped_ptr_malloc<C> to be used in boolean expressions, but not
642 typedef C* scoped_ptr_malloc
692 operator ==(C* p, const scoped_ptr_malloc<C, FP>& b) argument
697 operator !=(C* p, const scoped_ptr_malloc<C, FP>& b) argument
[all...]
/external/chromium_org/google_apis/cup/
H A Dclient_update_protocol_nss.cc15 typedef scoped_ptr_malloc<
/external/chromium_org/media/base/
H A Dbind_to_loop_unittest.cc21 void BoundBoolSetFromScopedPtrMalloc(bool* var, scoped_ptr_malloc<bool> val) {
119 scoped_ptr_malloc<bool> scoped_ptr_malloc_bool(
133 scoped_ptr_malloc<bool> scoped_ptr_malloc_bool(
136 base::Callback<void(scoped_ptr_malloc<bool>)> cb = BindToLoop(
/external/chromium_org/ui/gl/
H A Dgl_image_glx.cc23 // scoped_ptr_malloc<XVisualInfo, ScopedPtrXFree> foo(...);
74 scoped_ptr_malloc<XVisualInfo, ScopedPtrXFree> visinfo(
98 scoped_ptr_malloc<GLXFBConfig, ScopedPtrXFree> config(

Completed in 798 milliseconds

1234