Lines Matching defs:lineHeight
276 int16_t lineHeight = style.lineHeight_;
282 CalculatedCurLineHeight(lineHeight, curLineHeight, fontHeight, style, lineMaxHeight);
283 Point pos = GetPos(lineHeight, style, lineCount, coords);
303 curLineHeight = lineHeight;
309 if (lineHeight != style.lineHeight_) {
333 tempLetterIndex, lineHeight, lineBegin, i);
338 void Text::CalculatedCurLineHeight(int16_t& lineHeight, int16_t& curLineHeight,
341 if (lineHeight <= 0) {
342 lineHeight = fontHeight;
343 lineHeight += style.lineSpace_;
349 curLineHeight = lineHeight;
353 Point Text::GetPos(int16_t& lineHeight, const Style& style, uint16_t& lineCount, const Rect& coords)
356 if (lineHeight == style.lineHeight_) {
357 pos.y = TextPositionY(coords, (lineCount * lineHeight));
359 pos.y = TextPositionY(coords, (lineCount * lineHeight - style.lineSpace_));
378 int16_t& tempLetterIndex, int16_t& lineHeight, uint16_t& lineBegin, uint16_t letterIndex)
475 int16_t lineHeight = 0;
477 lineWidth, lineHeight, letterIndex, spannableString,
519 int16_t lineHeight = style.lineHeight_;
521 width, lineHeight, letterIndex, spannableString_,
548 int16_t lineHeight = style.lineHeight_;
550 if (lineHeight == 0) {
551 lineHeight = letterHeight + style.lineSpace_;
554 if (lineHeight != style.lineHeight_) {
557 height = lineHeight;
566 width, lineHeight, letterIndex, spannableString_,
574 y += lineHeight;
583 UIFontAdaptor::GetNextLineAndWidth(&text_[lineStart], fontId_, fontSize_, style.letterSpace_, width, lineHeight,