Home
last modified time | relevance | path

Searched refs:textHeight (Results 1 – 5 of 5) sorted by relevance

/external/skqp/gm/
Dlcdtext.cpp25 textHeight = SkIntToScalar(pointSize); in LcdTextGM()
40 y = textHeight; in onDraw()
56 SkFont font(nullptr, textHeight); in drawText()
64 y += textHeight; in drawText()
69 SkScalar y, textHeight; member in LcdTextGM
/external/exoplayer/tree/library/ui/src/main/java/com/google/android/exoplayer2/ui/
DSubtitlePainter.java327 int textHeight = textLayout.getHeight(); in setupTextLayout() local
382 textTop = cueLineAnchor == Cue.ANCHOR_TYPE_END ? anchorPosition - textHeight in setupTextLayout()
383 : cueLineAnchor == Cue.ANCHOR_TYPE_MIDDLE ? (anchorPosition * 2 - textHeight) / 2 in setupTextLayout()
385 if (textTop + textHeight > parentBottom) { in setupTextLayout()
386 textTop = parentBottom - textHeight; in setupTextLayout()
391 textTop = parentBottom - textHeight - (int) (parentHeight * bottomPaddingFraction); in setupTextLayout()
/external/ImageMagick/Magick++/lib/Magick++/
DTypeMetric.h52 double textHeight(void) const;
/external/skia/samplecode/
DSampleImageFilterDAG.cpp262 float textHeight = print_info(canvas, node); in draw_dag() local
266 canvas->drawRect(SkRect::MakeWH(nodeResults->width(), nodeResults->height() + textHeight), in draw_dag()
281 return std::max(y, nodeResults->height() + textHeight + kPad); in draw_dag()
/external/ImageMagick/Magick++/lib/
DTypeMetric.cpp57 double Magick::TypeMetric::textHeight(void) const in textHeight() function in Magick::TypeMetric