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

1 2

  /external/icu/icu4c/source/test/letest/
SimpleFontInstance.cpp 27 : fPointSize(pointSize), fAscent(0), fDescent(0)
34 fDescent = (le_int32) yUnitsToPoints(600.0);
87 return fDescent;
SimpleFontInstance.h 27 le_int32 fDescent;
PortableFontInstance.h 37 le_int32 fDescent;
PortableFontInstance.cpp 80 : fFile(NULL), fPointSize(pointSize), fUnitsPerEM(0), fFontChecksum(0), fAscent(0), fDescent(0), fLeading(0),
168 fDescent = (le_int32) yUnitsToPoints((float) SWAPW(hheaTable->descent));
432 return fDescent;
  /external/icu/icu4c/source/test/perf/leperf/
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 80 : fFile(NULL), fPointSize(pointSize), fUnitsPerEM(0), fFontChecksum(0), fAscent(0), fDescent(0), fLeading(0),
167 fDescent = (le_int32) yUnitsToPoints((float) SWAPW(hheaTable->descent));
436 return fDescent;
  /external/icu/icu4c/source/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/icu/icu4c/source/layoutex/layout/
ParagraphLayout.h 172 le_int32 fDescent;
621 le_int32 fDescent;
664 : UObject(), fAscent(0), fDescent(0), fLeading(0), fRunCount(0), fRunCapacity(0), fRuns(NULL)
670 : UObject(), fAscent(0), fDescent(0), fLeading(0), fRunCount(0), fRunCapacity(0), fRuns(NULL)
  /external/skia/src/core/
SkAdvancedTypefaceMetrics.h 71 int16_t fDescent; // Max depth below baseline (negative).
  /external/skia/src/fonts/
SkTestScalerContext.cpp 156 info->fDescent = 0;
278 metrics->fDescent = SkScalarMul(metrics->fDescent, scale);
SkGScalerContext.cpp 146 metrics->fDescent = SkScalarMul(metrics->fDescent, scale);
  /external/icu/icu4c/source/layoutex/
ParagraphLayout.cpp 321 fAscent(0), fDescent(0), fLeading(0),
648 return fDescent;
840 if (descent > fDescent) {
841 fDescent = descent;
853 fLeading = maxDL - fDescent;
    [all...]
  /external/skia/src/utils/
SkTextBox.cpp 226 if (y + metrics.fDescent + metrics.fLeading > 0) {
238 return y + metrics.fDescent + metrics.fLeading;
  /external/skia/src/ports/
SkTypeface_win_dw.cpp 370 info->fDescent = dwfm.descent;
384 info->fDescent = dwfm.descent;
416 info->fDescent = SkToS16(dwfm.descent);
  /external/skia/samplecode/
SampleFontCache.cpp 56 y += m.fDescent - m.fAscent;
SamplePolyToPoly.cpp 111 float y = D/2 - (fm.fAscent + fm.fDescent)/2;
  /external/pdfium/core/include/fpdfdoc/
fpdf_vt.h 226 CPVT_Word() : Word(0), nCharset(0), ptWord(0, 0), fAscent(0.0f), fDescent(0.0f), fWidth(0.0f),
241 FX_FLOAT fDescent;
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_pageobjs.cpp 18 return CPDF_Rect(word.ptWord.x, word.ptWord.y + word.fDescent * 0.5f,
19 word.ptWord.x + word.fWidth, word.ptWord.y + word.fDescent * 0.25f);
24 return CPDF_Rect(word.ptWord.x, word.ptWord.y + (word.fAscent + word.fDescent) * 0.5f + word.fDescent * 0.25f,
25 word.ptWord.x + word.fWidth, word.ptWord.y + (word.fAscent + word.fDescent) * 0.5f);
570 CPDF_Point(word.ptWord.x, word.ptWord.y + word.fDescent * 0.4f),
571 CPDF_Point(word.ptWord.x + word.fWidth, word.ptWord.y + word.fDescent * 0.4f));

Completed in 173 milliseconds

1 2