Searched defs:SkAutoTDelete (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkTemplates.h102 /** \class SkAutoTDelete
103 An SkAutoTDelete<T> is like a T*, except that the destructor of SkAutoTDelete<T>
104 automatically deletes the pointer it holds (if any). That is, SkAutoTDelete<T>
105 owns the T object that it points to. Like a T*, an SkAutoTDelete<T> may hold
106 either NULL or a pointer to a T object. Also like T*, SkAutoTDelete<T> is
110 The size of a SkAutoTDelete is small: sizeof(SkAutoTDelete<T>) == sizeof(T*)
112 template <typename T> class SkAutoTDelete : SkNoncopyable { class in inherits:SkNoncopyable
114 SkAutoTDelete( function in class:SkAutoTDelete
[all...]
/external/skia/include/core/
H A DSkTemplates.h102 /** \class SkAutoTDelete
103 An SkAutoTDelete<T> is like a T*, except that the destructor of SkAutoTDelete<T>
104 automatically deletes the pointer it holds (if any). That is, SkAutoTDelete<T>
105 owns the T object that it points to. Like a T*, an SkAutoTDelete<T> may hold
106 either NULL or a pointer to a T object. Also like T*, SkAutoTDelete<T> is
110 The size of a SkAutoTDelete is small: sizeof(SkAutoTDelete<T>) == sizeof(T*)
112 template <typename T> class SkAutoTDelete : SkNoncopyable { class in inherits:SkNoncopyable
114 SkAutoTDelete( function in class:SkAutoTDelete
[all...]

Completed in 136 milliseconds