Searched refs:iDescent (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
H A Dfontprops.mm61 int iDescent;
65 wkGetFontMetrics(cgFont, &iAscent, &iDescent, &iLineGap, &unitsPerEm);
68 iDescent = CGFontGetDescent(cgFont);
74 float fDescent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize;
/external/webkit/Source/WebCore/platform/graphics/win/
H A DSimpleFontDataCGWin.cpp64 int iDescent = CGFontGetDescent(font); local
69 float fDescent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize;
/external/webkit/Source/WebCore/platform/graphics/mac/
H A DSimpleFontDataMac.mm219 int iDescent;
223 wkGetFontMetrics(m_platformData.cgFont(), &iAscent, &iDescent, &iLineGap, &unitsPerEm);
226 iDescent = CGFontGetDescent(m_platformData.cgFont());
233 float descent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize;

Completed in 105 milliseconds