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

  /external/skia/src/ports/
SkFontHost_mac_coretext.cpp 47 // CFSafeRelease(autoCFRelease) through implicit conversion.
55 // CFSafeRetain(autoCFRelease) through implicit conversion.
63 template<typename CFRef> class AutoCFRelease : private SkNoncopyable {
65 explicit AutoCFRelease(CFRef cfRef = NULL) : fCFRef(cfRef) { }
66 ~AutoCFRelease() { CFSafeRelease(fCFRef); }
74 AutoCFRelease& operator =(CFRef that) {
97 AutoCFRelease<CFDataRef> fCFData;
305 AutoCFRelease<CGColorSpaceRef> colorspace(CGColorSpaceCreateDeviceRGB());
306 AutoCFRelease<CGContextRef> cgContext(CGBitmapContextCreate(&rgb, 1, 1, 8, 4,
334 AutoCFRelease<CGColorSpaceRef> fRGBSpace
    [all...]
  /external/skia/legacy/src/ports/
SkFontHost_mac_coretext.cpp 41 class AutoCFRelease : SkNoncopyable {
43 AutoCFRelease(CFTypeRef obj) : fObj(obj) {}
44 ~AutoCFRelease() { CFSafeRelease(fObj); }
    [all...]

Completed in 355 milliseconds