Home
last modified time | relevance | path

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

/external/skia/legacy/src/ports/
DSkFontHost_mac_coretext.cpp952 CGRect theBounds; in generateMetrics() local
963 &cgGlyph, &theBounds, 1); in generateMetrics()
968 &cgGlyph, &theBounds, 1); in generateMetrics()
974 &cgGlyph, &theBounds, 1); in generateMetrics()
987 theBounds = CGRectMake(0, 0, 0, 0); in generateMetrics()
998 if (CGRectIsEmpty_inline(theBounds)) { in generateMetrics()
1009 theBounds.origin.x, theBounds.origin.y, in generateMetrics()
1010 theBounds.size.width, theBounds.size.height); in generateMetrics()
1012 theBounds.origin.x = glyphBounds.fLeft; in generateMetrics()
1013 theBounds.origin.y = glyphBounds.fTop; in generateMetrics()
[all …]
/external/skia/src/ports/
DSkFontHost_mac_coretext.cpp1290 CGRect theBounds = CTFontGetBoundingBox(fCTFont); in generateFontMetrics() local
1293 theMetrics.fTop = CGToScalar(-CGRectGetMaxY_inline(theBounds)); in generateFontMetrics()
1296 theMetrics.fBottom = CGToScalar(-CGRectGetMinY_inline(theBounds)); in generateFontMetrics()
1298 theMetrics.fAvgCharWidth = CGToScalar( CGRectGetWidth_inline(theBounds)); in generateFontMetrics()
1299 theMetrics.fXMin = CGToScalar( CGRectGetMinX_inline(theBounds)); in generateFontMetrics()
1300 theMetrics.fXMax = CGToScalar( CGRectGetMaxX_inline(theBounds)); in generateFontMetrics()