HomeSort by relevance Sort by last modified time
    Searched refs:fDescent (Results 1 - 25 of 33) sorted by null

1 2

  /external/icu4c/test/letest/
SimpleFontInstance.cpp 24 : fPointSize(pointSize), fAscent(0), fDescent(0)
31 fDescent = (le_int32) yUnitsToPoints(600.0);
81 return fDescent;
SimpleFontInstance.h 27 le_int32 fDescent;
PortableFontInstance.h 37 le_int32 fDescent;
PortableFontInstance.cpp 68 : fFile(NULL), fPointSize(pointSize), fUnitsPerEM(0), fFontChecksum(0), fAscent(0), fDescent(0), fLeading(0),
150 fDescent = (le_int32) yUnitsToPoints((float) SWAPW(hheaTable->descent));
391 return fDescent;
  /external/icu4c/samples/layout/
FontMap.h 50 le_int32 fDescent;
GDIFontInstance.h 60 le_int32 fDescent;
123 return fDescent;
GnomeFontInstance.h 59 le_int32 fDescent;
133 return fDescent;
FontMap.cpp 23 : fPointSize(pointSize), fFontCount(0), fAscent(0), fDescent(0), fLeading(0), fGUISupport(guiSupport)
240 if (fDescent <= 0) {
244 return fDescent;
278 if (descent > fDescent) {
279 fDescent = descent;
GnomeFontInstance.cpp 50 : FontTableCache(), fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
77 fDescent = (le_int32) -(yUnitsToPoints(fFace->descender) * fDeviceScaleY);
78 fLeading = (le_int32) (yUnitsToPoints(fFace->height) * fDeviceScaleY) - fAscent - fDescent;
80 // printf("Face = %s, unitsPerEM = %d, ascent = %d, descent = %d\n", fontPathName, fUnitsPerEM, fAscent, fDescent);
GDIFontInstance.cpp 106 fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
172 fDescent = otm.otmTextMetrics.tmDescent;
191 fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
256 fDescent = otm.otmTextMetrics.tmDescent;
281 fDescent = (le_int32) yUnitsToPoints((float) SWAPW(hheaTable->descent));
  /external/webkit/Source/WebCore/platform/graphics/win/
SimpleFontDataCGWin.cpp 69 float fDescent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize;
91 fAscent += floorf(((fAscent + fDescent) * 0.15f) + 0.5f);
96 m_fontMetrics.setDescent(fDescent);
98 m_fontMetrics.setLineSpacing(lroundf(fAscent) + lroundf(fDescent) + lroundf(fLineGap));
  /external/webkit/Source/WebCore/platform/graphics/android/fonts/
FontDataAndroid.cpp 52 float d = SkScalarToFloat(skiaFontMetrics.fDescent);
53 float s = SkScalarToFloat(skiaFontMetrics.fDescent - skiaFontMetrics.fAscent);
  /external/icu4c/layoutex/layout/
ParagraphLayout.h 165 le_int32 fDescent;
611 le_int32 fDescent;
654 : UObject(), fAscent(0), fDescent(0), fLeading(0), fRunCount(0), fRunCapacity(0), fRuns(NULL)
660 : UObject(), fAscent(0), fDescent(0), fLeading(0), fRunCount(0), fRunCapacity(0), fRuns(NULL)
  /external/webkit/Source/WebCore/platform/wx/wxcode/mac/carbon/
fontprops.mm 74 float fDescent = -scaleEmToUnits(iDescent, unitsPerEm) * pointSize;
78 m_descent = lroundf(fDescent);
  /external/skia/include/core/
SkAdvancedTypefaceMetrics.h 66 int16_t fDescent; // Max depth below baseline (negative).
SkPaint.h 722 SkScalar fDescent; //!< The recommended distance below the baseline (will be >= 0)
732 fDescent - fAscent + fLeading).
745 fDescent - fAscent + fLeading
    [all...]
  /external/skia/gm/
poly2poly.cpp 51 SkScalar y = D/2 - (fm.fAscent + fm.fDescent)/2;
  /external/icu4c/layoutex/
ParagraphLayout.cpp 321 fAscent(0), fDescent(0), fLeading(0),
645 return fDescent;
837 if (descent > fDescent) {
838 fDescent = descent;
850 fLeading = maxDL - fDescent;
    [all...]
  /external/skia/src/ports/
SkFontHost_ascender.cpp 197 mx->fDescent = SkIntToScalar(4);
211 my->fDescent = SkIntToScalar(4);
SkFontHost_mac_atsui.cpp 290 dst->fDescent = SkFloatToScalar(src.descent);
388 mx->fDescent = pts[2].fX;
400 my->fDescent = pts[2].fY;
  /external/webkit/Source/WebKit/android/plugins/
ANPPaintInterface.cpp 167 metrics->fDescent = SkScalarToFloat(fm.fDescent);
  /external/skia/samplecode/
SampleFontCache.cpp 56 y += m.fDescent - m.fAscent;
SamplePolyToPoly.cpp 113 float y = D/2 - (fm.fAscent + fm.fDescent)/2;
  /external/webkit/Source/WebCore/platform/graphics/chromium/
SimpleFontDataLinux.cpp 95 SkScalar height = -metrics.fAscent + metrics.fDescent + metrics.fLeading;
  /external/skia/src/views/
SkTextBox.cpp 198 if (y + metrics.fDescent + metrics.fLeading > 0)

Completed in 1159 milliseconds

1 2