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

/external/skia/src/core/
H A DSkRefCnt.cpp20 SkAutoUnref::~SkAutoUnref() {
26 bool SkAutoUnref::ref() {
34 bool SkAutoUnref::unref() {
43 SkRefCnt* SkAutoUnref::detach() {
/external/skia/include/core/
H A DSkRefCnt.h88 /** \class SkAutoUnref
90 SkAutoUnref is a stack-helper class that will automatically call unref() on
91 the object it points to when the SkAutoUnref object goes out of scope.
94 class SkAutoUnref : SkNoncopyable { class in inherits:SkNoncopyable
96 SkAutoUnref(SkRefCnt* obj) : fObj(obj) {} function in class:SkAutoUnref
97 ~SkAutoUnref();

Completed in 135 milliseconds