HomeSort by relevance Sort by last modified time
    Searched full:font_extents (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/platform/graphics/gtk/
SimpleFontDataGtk.cpp 48 cairo_font_extents_t font_extents; local
50 cairo_scaled_font_extents(m_platformData.m_scaledFont, &font_extents);
51 m_ascent = static_cast<int>(lroundf(font_extents.ascent));
52 m_descent = static_cast<int>(lroundf(font_extents.descent));
53 m_lineSpacing = static_cast<int>(lroundf(font_extents.height));
SimpleFontDataPango.cpp 49 cairo_font_extents_t font_extents; local
51 cairo_scaled_font_extents(m_platformData.m_scaledFont, &font_extents);
52 m_ascent = static_cast<int>(lroundf(font_extents.ascent));
53 m_descent = static_cast<int>(lroundf(font_extents.descent));
54 m_lineSpacing = static_cast<int>(lroundf(font_extents.height));
  /external/webkit/WebCore/platform/wx/wxcode/gtk/
fontprops.cpp 49 cairo_font_extents_t font_extents; local
53 cairo_scaled_font_extents(scaled_font, &font_extents);
54 m_ascent = static_cast<int>(font_extents.ascent);
55 m_descent = static_cast<int>(font_extents.descent);
56 m_lineSpacing = static_cast<int>(font_extents.height);

Completed in 215 milliseconds