OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_lineGap
(Results
1 - 5
of
5
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/
FontMetrics.h
35
,
m_lineGap
(0)
67
float floatLineGap() const { return
m_lineGap
; }
68
void setLineGap(float lineGap) {
m_lineGap
= lineGap; }
96
int lineGap() const { return lroundf(
m_lineGap
); }
112
m_lineGap
= 0;
120
float
m_lineGap
;
/external/webkit/Source/WebCore/platform/wx/wxcode/
fontprops.h
38
float GetLineGap() { return
m_lineGap
; }
45
float
m_lineGap
;
/external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
fontprops.mm
44
m_ascent(0), m_descent(0),
m_lineGap
(0), m_lineSpacing(0), m_xHeight(0)
79
m_lineGap
= lroundf(fLineGap);
83
m_lineSpacing = m_ascent + m_descent +
m_lineGap
;
/external/webkit/Source/WebCore/platform/wx/wxcode/gtk/
fontprops.cpp
44
m_ascent(0), m_descent(0),
m_lineGap
(0), m_lineSpacing(0), m_xHeight(0)
60
m_lineGap
= m_lineSpacing - m_ascent - m_descent;
90
m_lineGap
= (m_ascent + m_descent) / 4; // FIXME: How can we calculate this via Pango?
/external/webkit/Source/WebCore/platform/wx/wxcode/win/
fontprops.cpp
48
m_ascent(0), m_descent(0),
m_lineGap
(0), m_lineSpacing(0), m_xHeight(0)
62
m_lineGap
= lroundf(tm.tmExternalLeading);
63
m_lineSpacing =
m_lineGap
+ m_ascent + m_descent;
Completed in 97 milliseconds