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

  /external/webkit/Source/WebCore/platform/graphics/
FontMetrics.h 33 , m_ascent(0)
47 return m_ascent;
51 void setAscent(float ascent) { m_ascent = ascent; }
80 return lroundf(m_ascent);
110 m_ascent = 0;
118 float m_ascent; member in class:WebCore::FontMetrics
  /external/webkit/Source/WebCore/platform/wx/wxcode/
fontprops.h 36 float GetAscent() { return m_ascent; }
43 float m_ascent; member in class:wxFontProperties
  /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)
54 m_ascent = static_cast<int>(font_extents.ascent);
60 m_lineGap = m_lineSpacing - m_ascent - m_descent;
80 m_ascent = PANGO_PIXELS(pango_font_metrics_get_ascent(metrics));
90 m_lineGap = (m_ascent + m_descent) / 4; // FIXME: How can we calculate this via Pango?
91 m_lineSpacing = m_ascent + m_descent;
  /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)
77 m_ascent = lroundf(fAscent);
83 m_lineSpacing = m_ascent + m_descent + m_lineGap;
  /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)
59 m_ascent = lroundf(tm.tmAscent);
61 m_xHeight = m_ascent * 0.56f; // Best guess for xHeight for non-Truetype fonts.
63 m_lineSpacing = m_lineGap + m_ascent + m_descent;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
UniscribeHelper.h 148 m_ascent = ascent;
387 // instead of m_logfont? Then, a derived class ctor can set m_ascent,
393 int m_ascent; member in class:WebCore::UniscribeHelper
UniscribeHelper.cpp 90 , m_ascent(0)
378 origin.fY = y + m_ascent;
521 int ascent = m_ascent;
660 shaping.m_ascentOffset = m_ascent ? ascent - m_ascent : 0;
    [all...]

Completed in 238 milliseconds