OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SkAutoTDelete
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/skia/include/core/
SkTemplates.h
101
/** \class
SkAutoTDelete
102
An
SkAutoTDelete
<T> is like a T*, except that the destructor of
SkAutoTDelete
<T>
103
automatically deletes the pointer it holds (if any). That is,
SkAutoTDelete
<T>
104
owns the T object that it points to. Like a T*, an
SkAutoTDelete
<T> may hold
105
either NULL or a pointer to a T object. Also like T*,
SkAutoTDelete
<T> is
109
The size of a
SkAutoTDelete
is small: sizeof(
SkAutoTDelete
<T>) == sizeof(T*)
111
template <typename T> class
SkAutoTDelete
: SkNoncopyable {
113
SkAutoTDelete
(T* obj = NULL) : fObj(obj) {
[
all
...]
/external/skia/include/core/
SkTemplates.h
101
/** \class
SkAutoTDelete
102
An
SkAutoTDelete
<T> is like a T*, except that the destructor of
SkAutoTDelete
<T>
103
automatically deletes the pointer it holds (if any). That is,
SkAutoTDelete
<T>
104
owns the T object that it points to. Like a T*, an
SkAutoTDelete
<T> may hold
105
either NULL or a pointer to a T object. Also like T*,
SkAutoTDelete
<T> is
109
The size of a
SkAutoTDelete
is small: sizeof(
SkAutoTDelete
<T>) == sizeof(T*)
111
template <typename T> class
SkAutoTDelete
: SkNoncopyable {
113
SkAutoTDelete
(T* obj = NULL) : fObj(obj) {
[
all
...]
Completed in 4045 milliseconds