Home
last modified time | relevance | path

Searched refs:cfFontName (Results 1 – 2 of 2) sorted by relevance

/external/skia/legacy/src/ports/
DSkFontHost_mac_coretext.cpp392 CFStringRef cfFontName; in NewFromName() local
410 cfFontName = CFStringCreateWithCString(NULL, familyName, kCFStringEncodingUTF8); in NewFromName()
417 if (cfFontName != NULL && cfFontTraits != NULL && cfAttributes != NULL && cfTraits != NULL) { in NewFromName()
420 CFDictionaryAddValue(cfAttributes, kCTFontFamilyNameAttribute, cfFontName); in NewFromName()
427 CTFontRef ctNamed = CTFontCreateWithName(cfFontName, 1, NULL); in NewFromName()
437 CFSafeRelease(cfFontName); in NewFromName()
/external/skia/src/ports/
DSkFontHost_mac_coretext.cpp438 AutoCFRelease<CFStringRef> cfFontName( in NewFromName() local
455 if (cfFontName != NULL && cfFontTraits != NULL && cfAttributes != NULL && cfTraits != NULL) { in NewFromName()
458 CFDictionaryAddValue(cfAttributes, kCTFontFamilyNameAttribute, cfFontName); in NewFromName()
467 AutoCFRelease<CTFontRef> ctNamed(CTFontCreateWithName(cfFontName, 1, NULL)); in NewFromName()