Home
last modified time | relevance | path

Searched refs:correctAscent (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/modules/skparagraph/src/
DRun.h92 SkScalar correctAscent() const { return fCorrectAscent + fBaselineShift; } in correctAscent() function
129 : this->correctAscent(); in calculateHeight()
396 fAscent = std::min(fAscent, run->correctAscent()); in add()
444 … (ascentStyle == LineMetricStyle::Typographic ? run->ascent() : run->correctAscent()) + delta(); in runTop()
DDecorations.cpp36 calculatePosition(decoration, context.run->correctAscent()); in paint()
/third_party/flutter/skia/modules/skparagraph/src/
DRun.h74 SkScalar correctAscent() const { in correctAscent() function
315 fAscent = SkTMin(fAscent, run->correctAscent()); in add()
DTextLine.cpp279 position = -run->correctAscent() + thickness; in paintDecorations()
285 position = (run->correctDescent() - run->correctAscent() - thickness) / 2; in paintDecorations()
/third_party/flutter/skia/tests/
DSkParagraphTest.cpp3082 REPORTER_ASSERT(reporter, impl->runs()[1].correctAscent() != impl->runs()[3].correctAscent()); in DEF_TEST()
3084 REPORTER_ASSERT(reporter, impl->runs()[3].correctAscent() != impl->runs()[5].correctAscent()); in DEF_TEST()
3086 REPORTER_ASSERT(reporter, impl->runs()[1].correctAscent() != impl->runs()[5].correctAscent()); in DEF_TEST()
/third_party/skia/modules/skparagraph/tests/
DSkParagraphTest.cpp4311 …ER_ASSERT(reporter, impl->runs()[3 + spaceRun].correctAscent() != impl->runs()[5 + spaceRun].corre… in UNIX_ONLY_TEST()