Searched defs:SkRefCnt (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/skia/config/
H A Dsk_ref_cnt_ext_release.h9 #error Only one SkRefCnt should be used.
12 // Alternate implementation of SkRefCnt for Chromium release builds
13 class SK_API SkRefCnt : public SkRefCntBase { class in inherits:SkRefCntBase
H A Dsk_ref_cnt_ext_debug.h9 #error Only one SkRefCnt should be used.
12 // Alternate implementation of SkRefCnt for Chromium debug builds
13 class SK_API SkRefCnt : public SkRefCntBase { class in inherits:SkRefCntBase
15 SkRefCnt() : flags_(0) {} function in class:SkRefCnt
32 inline void adopted(const SkRefCnt* object) {
37 inline void requireAdoption(const SkRefCnt* object) {
/external/skia/include/ports/
H A DSkRefCnt_android.h12 * Android's version of SkRefCnt.
15 * that calls SkRefCnt::deref(), can link against the system's copy of Skia.
17 class SK_API SkRefCnt : public SkRefCntBase { class in inherits:SkRefCntBase
/external/chromium_org/third_party/skia/include/core/
H A DSkRefCnt.h115 // and conditionally call SkRefCnt::internal_dispose().
124 // It is the responsibility of the following include to define the type SkRefCnt.
125 // This SkRefCnt should normally derive from SkRefCntBase.
128 class SK_API SkRefCnt : public SkRefCntBase { }; class in inherits:SkRefCntBase
133 /** Helper macro to safely assign one SkRefCnt[TS]* to another, checking for
244 class SkAutoUnref : public SkAutoTUnref<SkRefCnt> {
246 SkAutoUnref(SkRefCnt* obj) : SkAutoTUnref<SkRefCnt>(obj) {}
/external/skia/include/core/
H A DSkRefCnt.h115 // and conditionally call SkRefCnt::internal_dispose().
125 // It is the responsibility of the following include to define the type SkRefCnt.
126 // This SkRefCnt should normally derive from SkRefCntBase.
129 class SK_API SkRefCnt : public SkRefCntBase { }; class in inherits:SkRefCntBase
134 /** Helper macro to safely assign one SkRefCnt[TS]* to another, checking for
245 class SkAutoUnref : public SkAutoTUnref<SkRefCnt> {
247 SkAutoUnref(SkRefCnt* obj) : SkAutoTUnref<SkRefCnt>(obj) {}
253 SkAutoRef(SkRefCnt* obj) : fObj(obj) { SkSafeRef(obj); }
256 SkRefCnt* fOb
[all...]

Completed in 123 milliseconds