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

  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 66 TEXTMETRIC textMetric = {0};
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}
    [all...]
  /external/webkit/Tools/WinLauncher/
PrintWebUIDelegate.cpp 104 TEXTMETRIC textMetric;
105 ::GetTextMetrics(dc, &textMetric);
108 *height = 1.1 * textMetric.tmHeight;
120 TEXTMETRIC textMetric;
121 ::GetTextMetrics(dc, &textMetric);
124 *height = 1.1 * textMetric.tmHeight;

Completed in 4128 milliseconds