Home
last modified time | relevance | path

Searched refs:m_lineGap (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/
DFontMetrics.h35 , m_lineGap(0) in FontMetrics()
67 float floatLineGap() const { return m_lineGap; } in floatLineGap()
68 void setLineGap(float lineGap) { m_lineGap = lineGap; } in setLineGap()
96 int lineGap() const { return lroundf(m_lineGap); } in lineGap()
112 m_lineGap = 0; in reset()
120 float m_lineGap; variable
/external/webkit/Source/WebCore/platform/wx/wxcode/
Dfontprops.h38 float GetLineGap() { return m_lineGap; } in GetLineGap()
45 float m_lineGap; variable
/external/webkit/Source/WebCore/platform/wx/wxcode/win/
Dfontprops.cpp48 m_ascent(0), m_descent(0), m_lineGap(0), m_lineSpacing(0), m_xHeight(0) in wxFontProperties()
62 m_lineGap = lroundf(tm.tmExternalLeading); in wxFontProperties()
63 m_lineSpacing = m_lineGap + m_ascent + m_descent; in wxFontProperties()
/external/webkit/Source/WebCore/platform/wx/wxcode/gtk/
Dfontprops.cpp44 m_ascent(0), m_descent(0), m_lineGap(0), m_lineSpacing(0), m_xHeight(0) in wxFontProperties()
60 m_lineGap = m_lineSpacing - m_ascent - m_descent; in wxFontProperties()
90 m_lineGap = (m_ascent + m_descent) / 4; // FIXME: How can we calculate this via Pango? in wxFontProperties()
/external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
Dfontprops.mm44 m_ascent(0), m_descent(0), m_lineGap(0), m_lineSpacing(0), m_xHeight(0) function
79 m_lineGap = lroundf(fLineGap);
83 m_lineSpacing = m_ascent + m_descent + m_lineGap;
/external/webkit/Source/WebCore/
DChangeLog-2011-02-1619271 (WebCore::FontMetrics::floatLineGap): Returns the stored m_lineGap float.
19272 (WebCore::FontMetrics::setLineGap): Sets the stored m_lineGap float.
DChangeLog-2008-08-1055944 Initialize missing variables, m_lineGap / m_lineSpacing.