Searched defs:textMetric (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DSimpleFontDataChromiumWin.cpp66 TEXTMETRIC textMetric = {0}; local
67 if (!GetTextMetrics(dc, &textMetric)) {
72 if (!GetTextMetrics(dc, &textMetric))
77 m_avgCharWidth = textMetric.tmAveCharWidth;
78 m_maxCharWidth = textMetric.tmMaxCharWidth;
81 float ascent = textMetric.tmAscent;
82 float descent = textMetric.tmDescent;
83 float lineGap = textMetric.tmExternalLeading;
160 TEXTMETRIC textMetric = {0}; local
161 if (!GetTextMetrics(dc, &textMetric)) {
[all...]
/external/webkit/Tools/WinLauncher/
H A DPrintWebUIDelegate.cpp104 TEXTMETRIC textMetric; local
105 ::GetTextMetrics(dc, &textMetric);
108 *height = 1.1 * textMetric.tmHeight;
120 TEXTMETRIC textMetric; local
121 ::GetTextMetrics(dc, &textMetric);
124 *height = 1.1 * textMetric.tmHeight;

Completed in 128 milliseconds