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

  /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/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/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/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));
FontChromiumWin.cpp 251 m_point.y() - fontMetrics.ascent() - fontMetrics.lineGap(),
360 m_point.y() - fontMetrics.ascent() - fontMetrics.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/mac/
SimpleFontDataMac.mm 234 float lineGap = scaleEmToUnits(iLineGap, unitsPerEm) * pointSize;
255 m_fontMetrics.setLineSpacing(lroundf(ascent) + lroundf(descent) + lroundf(lineGap));
259 if (descent < 3 && lineGap >= 3 && [familyName hasPrefix:@"Hiragino"]) {
260 lineGap -= 3 - descent;
294 m_fontMetrics.setLineGap(lineGap);
  /external/icu4c/samples/layout/
sfnt.h 190 le_int16 lineGap;
GDIFontInstance.cpp 282 fLeading = (le_int32) yUnitsToPoints((float) SWAPW(hheaTable->lineGap));
  /external/icu4c/test/letest/
FontObject.h 153 le_int16 lineGap;
sfnt.h 327 le_int16 lineGap;
PortableFontInstance.cpp 151 fLeading = (le_int32) yUnitsToPoints((float) SWAPW(hheaTable->lineGap));
  /external/webkit/Source/WebCore/platform/mac/
WebCoreSystemInterface.mm 109 void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm);
WebCoreSystemInterface.h 175 extern void (*wkGetFontMetrics)(CGFontRef, int* ascent, int* descent, int* lineGap, unsigned* unitsPerEm);
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 146 void WKGetFontMetrics(CGFontRef font, int *ascent, int *descent, int *lineGap, unsigned *unitsPerEm);
  /external/opencv/cv/include/
cvcompat.h 517 int lineLength, int lineGap,
522 rho, theta, threshold, lineLength, lineGap );
    [all...]
  /external/opencv/cv/src/
cvhough.cpp 485 int lineLength, int lineGap,
656 else if( ++gap > lineGap )
    [all...]
  /external/webkit/Source/WebCore/html/canvas/
CanvasRenderingContext2D.cpp     [all...]

Completed in 778 milliseconds