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

  /external/skia/legacy/src/ports/
SkFontHost_mac_coretext.cpp 388 CFMutableDictionaryRef cfAttributes, cfTraits;
412 cfAttributes = CFDictionaryCreateMutable(kCFAllocatorDefault, 0, &kCFTypeDictionaryKeyCallBacks, &kCFTypeDictionaryValueCallBacks);
417 if (cfFontName != NULL && cfFontTraits != NULL && cfAttributes != NULL && cfTraits != NULL) {
420 CFDictionaryAddValue(cfAttributes, kCTFontFamilyNameAttribute, cfFontName);
421 CFDictionaryAddValue(cfAttributes, kCTFontTraitsAttribute, cfTraits);
423 ctFontDesc = CTFontDescriptorCreateWithAttributes(cfAttributes);
439 CFSafeRelease(cfAttributes);
656 CFMutableDictionaryRef cfAttributes = CFDictionaryCreateMutable(
659 if (cfAttributes) {
663 CFDictionaryAddValue(cfAttributes, kCTFontOrientationAttribute
    [all...]
  /external/skia/src/ports/
SkFontHost_mac_coretext.cpp 444 AutoCFRelease<CFMutableDictionaryRef> cfAttributes(
455 if (cfFontName != NULL && cfFontTraits != NULL && cfAttributes != NULL && cfTraits != NULL) {
458 CFDictionaryAddValue(cfAttributes, kCTFontFamilyNameAttribute, cfFontName);
459 CFDictionaryAddValue(cfAttributes, kCTFontTraitsAttribute, cfTraits);
462 CTFontDescriptorCreateWithAttributes(cfAttributes));
679 AutoCFRelease<CFMutableDictionaryRef> cfAttributes(CFDictionaryCreateMutable(
683 if (cfAttributes) {
687 CFDictionaryAddValue(cfAttributes, kCTFontOrientationAttribute, cfVertical);
688 ctFontDesc = CTFontDescriptorCreateWithAttributes(cfAttributes);
    [all...]

Completed in 34 milliseconds