HomeSort by relevance Sort by last modified time
    Searched defs:lineGap (Results 1 - 13 of 13) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/qt/
SimpleFontDataQt.cpp 67 float lineGap = lineSpacing - ascent - descent;
73 m_fontMetrics.setLineGap(lineGap);
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCairoWin.cpp 68 float lineGap = textMetrics.tmExternalLeading * metricsMultiplier;
71 m_fontMetrics.setLineGap(lineGap);
72 m_fontMetrics.setLineSpacing(lroundf(ascent) + lroundf(descent) + lroundf(lineGap));
SimpleFontDataWin.cpp 81 float lineGap = textMetrics.tmExternalLeading;
84 m_fontMetrics.setLineGap(lineGap);
85 m_fontMetrics.setLineSpacing(lroundf(ascent) + lroundf(descent) + lroundf(lineGap));
FontCGWin.cpp 171 int lineGap = fontMetrics.lineGap();
173 point.y() - fontMetrics.ascent() - lineGap,
  /external/webkit/Source/WebCore/platform/graphics/wince/
SimpleFontDataWinCE.cpp 54 float lineGap = (tm.tmExternalLeading * m_platformData.size() + 36) / 72.0f;
57 m_fontMetrics.setLineGap(lineGap);
58 m_fontMetrics.setLineSpacing(lroundf(ascent) + lroundf(descent) + lroundf(lineGap));
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontDataAndroid.cpp 59 float lineGap = SkScalarToFloat(skiaFontMetrics.fLeading);
60 if (platformData().orientation() == Vertical && lineGap == 0) {
61 lineGap = skiaFontMetrics.fAvgCharWidth * 0.56f;
63 m_fontMetrics.setLineGap(lineGap);
64 m_fontMetrics.setLineSpacing(a + d + lineGap);
  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataChromiumWin.cpp 80 // FIXME: Access ascent/descent/lineGap with floating point precision.
83 float lineGap = textMetric.tmExternalLeading;
98 m_fontMetrics.setLineGap(lineGap);
100 m_fontMetrics.setLineSpacing(ascent + descent + lineGap);
SimpleFontDataLinux.cpp 111 float lineGap = SkScalarToFloat(metrics.fLeading);
112 m_fontMetrics.setLineGap(lineGap);
114 m_fontMetrics.setLineSpacing(lroundf(ascent) + lroundf(descent) + lroundf(lineGap));
  /external/webkit/Source/WebCore/platform/graphics/
FontMetrics.h 68 void setLineGap(float lineGap) { m_lineGap = lineGap; }
96 int lineGap() const { return lroundf(m_lineGap); }
101 return ascent() == other.ascent() && descent() == other.descent() && lineGap() == other.lineGap();
SimpleFontData.cpp 87 float lineGap = 0.1f * size;
100 m_fontMetrics.setLineGap(lineGap);
101 m_fontMetrics.setLineSpacing(roundf(ascent) + roundf(descent) + roundf(lineGap));
  /external/icu4c/samples/layout/
sfnt.h 190 le_int16 lineGap;
  /external/icu4c/test/letest/
FontObject.h 153 le_int16 lineGap;
sfnt.h 327 le_int16 lineGap;

Completed in 304 milliseconds