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

  /external/skia/legacy/include/core/
SkRefCnt.h 15 /** \class SkRefCnt
17 SkRefCnt is the base class for objects that may be shared by multiple
25 class SK_API SkRefCnt : SkNoncopyable {
29 SkRefCnt() : fRefCnt(1) {}
33 virtual ~SkRefCnt() {
74 /** Helper macro to safely assign one SkRefCnt[TS]* to another, checking for
135 class SkAutoUnref : public SkAutoTUnref<SkRefCnt> {
137 SkAutoUnref(SkRefCnt* obj) : SkAutoTUnref<SkRefCnt>(obj) {}
142 SkAutoRef(SkRefCnt* obj) : fObj(obj) { SkSafeRef(obj);
    [all...]
  /external/skia/include/core/
SkRefCnt.h 17 /** \class SkRefCnt
19 SkRefCnt is the base class for objects that may be shared by multiple
27 class SK_API SkRefCnt : SkNoncopyable {
29 SK_DECLARE_INST_COUNT_ROOT(SkRefCnt)
33 SkRefCnt() : fRefCnt(1) {}
37 virtual ~SkRefCnt() {
109 // call SkRefCnt's & directly set fRefCnt (to 1)
118 /** Helper macro to safely assign one SkRefCnt[TS]* to another, checking for
219 class SkAutoUnref : public SkAutoTUnref<SkRefCnt> {
221 SkAutoUnref(SkRefCnt* obj) : SkAutoTUnref<SkRefCnt>(obj) {
    [all...]

Completed in 71 milliseconds