Lines Matching refs:fCTFont

708     AutoCFRelease<CTFontRef> fCTFont;  member in SkScalerContext_Mac
777 fCTFont.reset(ctfont_create_exact_copy(ctFont, textSize, nullptr)); in SkScalerContext_Mac()
778 fCGFont.reset(CTFontCopyGraphicsFont(fCTFont, nullptr)); in SkScalerContext_Mac()
878 CGContextSetFontSize(fCG, CTFontGetSize(context.fCTFont)); in getCG()
925 ctFontDrawGlyphs(context.fCTFont, &glyphID, &point, 1, fCG); in getCG()
936 CTFontGetVerticalTranslationsForGlyphs(fCTFont, &glyphID, &cgVertOffset, 1); in getVerticalOffset()
1019 CTFontGetGlyphsForCharacters(fCTFont, theChar, cgGlyph, numUniChar); in generateCharToGlyph()
1036 CTFontGetAdvancesForGlyphs(fCTFont, kCTFontVerticalOrientation, in generateMetrics()
1042 CTFontGetAdvancesForGlyphs(fCTFont, kCTFontHorizontalOrientation, in generateMetrics()
1088 CTFontGetBoundingRectsForGlyphs(fCTFont, kCTFontHorizontalOrientation, in generateMetrics()
1098 AutoCFRelease<CGPathRef> path(CTFontCreatePathForGlyph(fCTFont, cgGlyph, nullptr)); in generateMetrics()
1376 AutoCFRelease<CGPathRef> cgPath(CTFontCreatePathForGlyph(fCTFont, cgGlyph, &xform)); in generatePath()
1402 CGRect theBounds = CTFontGetBoundingBox(fCTFont); in generateFontMetrics()
1405 metrics->fAscent = CGToScalar(-CTFontGetAscent(fCTFont)); in generateFontMetrics()
1406 metrics->fDescent = CGToScalar( CTFontGetDescent(fCTFont)); in generateFontMetrics()
1408 metrics->fLeading = CGToScalar( CTFontGetLeading(fCTFont)); in generateFontMetrics()
1413 metrics->fXHeight = CGToScalar( CTFontGetXHeight(fCTFont)); in generateFontMetrics()
1414 metrics->fCapHeight = CGToScalar( CTFontGetCapHeight(fCTFont)); in generateFontMetrics()
1415 metrics->fUnderlineThickness = CGToScalar( CTFontGetUnderlineThickness(fCTFont)); in generateFontMetrics()
1416 metrics->fUnderlinePosition = -CGToScalar( CTFontGetUnderlinePosition(fCTFont)); in generateFontMetrics()