HomeSort by relevance Sort by last modified time
    Searched defs:SkTScopedPtr (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/skia/include/core/
SkTScopedPtr.h 15 /** \class SkTScopedPtr
16 A SkTScopedPtr<T> is like a T*, except that the destructor of SkTScopedPtr<T>
17 automatically deletes the pointer it holds (if any). That is, SkTScopedPtr<T>
18 owns the T object that it points to. Like a T*, a SkTScopedPtr<T> may hold
19 either NULL or a pointer to a T object. Also like T*, SkTScopedPtr<T> is
23 The size of a SkTScopedPtr is small: sizeof(SkTScopedPtr<T>) == sizeof(T*)
25 template <typename T> class SkTScopedPtr : SkNoncopyable {
27 explicit SkTScopedPtr(T* o = NULL) : fObj(o) {
    [all...]
  /external/skia/include/core/
SkTScopedPtr.h 15 /** \class SkTScopedPtr
16 A SkTScopedPtr<T> is like a T*, except that the destructor of SkTScopedPtr<T>
17 automatically deletes the pointer it holds (if any). That is, SkTScopedPtr<T>
18 owns the T object that it points to. Like a T*, a SkTScopedPtr<T> may hold
19 either NULL or a pointer to a T object. Also like T*, SkTScopedPtr<T> is
23 The size of a SkTScopedPtr is small: sizeof(SkTScopedPtr<T>) == sizeof(T*)
25 template <typename T> class SkTScopedPtr : SkNoncopyable {
27 explicit SkTScopedPtr(T* o = NULL) : fObj(o) {
    [all...]

Completed in 164 milliseconds