Home | History | Annotate | Download | only in ports

Lines Matching refs:fCTFont

629     AutoCFRelease<CTFontRef> fCTFont;
691 fCTFont = CTFontCreateCopyWithAttributes(ctFont, unitFontSize, &transform, ctFontDesc);
692 fCGFont = CTFontCopyGraphicsFont(fCTFont, NULL);
910 if (!CTFontGetGlyphsForCharacters(fCTFont, &theChar, &cgGlyph, 1)) {
937 CTFontGetBoundingRectsForGlyphs(fCTFont, kCTFontDefaultOrientation,
943 CTFontGetBoundingRectsForGlyphs(fCTFont, kCTFontDefaultOrientation,
945 CTFontGetAdvancesForGlyphs(fCTFont, kCTFontDefaultOrientation,
955 AutoCFRelease<CGPathRef> path(CTFontCreatePathForGlyph(fCTFont, cgGlyph, NULL));
1230 CTFontRef font = fCTFont;
1263 font = CTFontCreateCopyWithAttributes(fCTFont, 1, &xform, NULL);
1290 CGRect theBounds = CTFontGetBoundingBox(fCTFont);
1294 theMetrics.fAscent = CGToScalar(-CTFontGetAscent(fCTFont));
1295 theMetrics.fDescent = CGToScalar( CTFontGetDescent(fCTFont));
1297 theMetrics.fLeading = CGToScalar( CTFontGetLeading(fCTFont));
1301 theMetrics.fXHeight = CGToScalar( CTFontGetXHeight(fCTFont));