HomeSort by relevance Sort by last modified time
    Searched refs:textMetric (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 59 TEXTMETRIC textMetric = {0};
60 if (!GetTextMetrics(dc, &textMetric)) {
65 if (!GetTextMetrics(dc, &textMetric))
70 m_avgCharWidth = textMetric.tmAveCharWidth;
71 m_maxCharWidth = textMetric.tmMaxCharWidth;
73 m_ascent = textMetric.tmAscent;
74 m_descent = textMetric.tmDescent;
75 m_lineGap = textMetric.tmExternalLeading;
137 TEXTMETRIC textMetric = {0}
    [all...]
  /external/webkit/WebKitTools/WinLauncher/
PrintWebUIDelegate.cpp 105 TEXTMETRIC textMetric;
106 ::GetTextMetrics(dc, &textMetric);
109 *height = 1.1 * textMetric.tmHeight;
121 TEXTMETRIC textMetric;
122 ::GetTextMetrics(dc, &textMetric);
125 *height = 1.1 * textMetric.tmHeight;

Completed in 1119 milliseconds