Home
last modified time | relevance | path

Searched refs:fActualSize (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/experimental/sktext/editor/
DTexts.h105 fActualSize = fWrappedText->actualSize(); in rebuild()
117 return SkRect::MakeXYWH(fOffset.fX, fOffset.fY, fActualSize.fWidth, fActualSize.fHeight); in actualSize()
131 SkSize fActualSize; variable
/third_party/skia/experimental/sktext/include/
DText.h219 SkSize actualSize() const { return fActualSize; } in actualSize()
240 WrappedText() : fActualSize(SkSize::MakeEmpty()), fAligned(TextAlign::kNothing) { } in WrappedText()
244 SkSize fActualSize; variable
369 SkSize fActualSize; variable
/third_party/skia/experimental/sktext/src/
DText.cpp431 wrappedText->fActualSize.fWidth = width; in wrap()
485 … SkPoint::Make(runOffsetInLine, wrappedText->fActualSize.fHeight), in addLine()
496 …ines.emplace_back(lineStretch.textRange(), hardLineBreak, wrappedText->fActualSize.fHeight, runRan… in addLine()
497 wrappedText->fActualSize.fHeight += lineStretch.textMetrics().height(); in addLine()
498 … wrappedText->fActualSize.fWidth = std::max(wrappedText->fActualSize.fWidth, lineStretch.width()); in addLine()
512 line.fOffset.fX = (this->fActualSize.width() - line.fActualWidth) / 2.0f; in format()
739 xy.fX = std::min(xy.fX, this->fActualSize.fWidth); in adjustedPosition()
740 xy.fY = std::min(xy.fY, this->fActualSize.fHeight); in adjustedPosition()