Lines Matching refs:textLine
2296 TextLine textLine = CloneSelf();
2299 textLine.fIsTextLineEllipsisHeadModal = true;
2300 textLine.setTextBlobCachePopulated(false);
2301 textLine.createHeadEllipsis(width, SkString(ellipsisStr), true);
2303 textLine.fIsTextLineEllipsisHeadModal = false;
2304 textLine.setTextBlobCachePopulated(false);
2306 textLine.fGhostClusterRange.end -= endWhitespaceCount;
2307 textLine.createTailEllipsis(width, SkString(ellipsisStr), true, fOwner->getWordBreakType());
2310 return std::make_unique<TextLineBaseImpl>(std::make_unique<TextLine>(std::move(textLine)));
2554 TextLine textLine;
2555 textLine.fBlockRange = this->fBlockRange;
2556 textLine.fTextExcludingSpaces = this->fTextExcludingSpaces;
2557 textLine.fText = this->fText;
2558 textLine.fTextIncludingNewlines = this->fTextIncludingNewlines;
2559 textLine.fClusterRange = this->fClusterRange;
2561 textLine.fGhostClusterRange = this->fGhostClusterRange;
2562 textLine.fRunsInVisualOrder = this->fRunsInVisualOrder;
2563 textLine.fAdvance = this->fAdvance;
2564 textLine.fOffset = this->fOffset;
2565 textLine.fShift = this->fShift;
2567 textLine.fWidthWithSpaces = this->fWidthWithSpaces;
2569 textLine.fEllipsis = std::make_unique<Run>(*this->fEllipsis);
2572 textLine.fSizes = this->fSizes;
2573 textLine.fMaxRunMetrics = this->fMaxRunMetrics;
2574 textLine.fHasBackground = this->fHasBackground;
2575 textLine.fHasShadows = this->fHasShadows;
2576 textLine.fHasDecorations = this->fHasDecorations;
2577 textLine.fAscentStyle = this->fAscentStyle;
2578 textLine.fDescentStyle = this->fDescentStyle;
2579 textLine.fTextBlobCachePopulated = this->fTextBlobCachePopulated;
2581 textLine.fOwner = this->fOwner;
2582 textLine.fIsTextLineEllipsisHeadModal = this->fIsTextLineEllipsisHeadModal;
2585 textLine.roundRectAttrs = this->roundRectAttrs;
2586 textLine.fTextBlobCache = this->fTextBlobCache;
2587 textLine.fTextRangeReplacedByEllipsis = this->fTextRangeReplacedByEllipsis;
2588 textLine.fEllipsisIndex = this->fEllipsisIndex;
2589 textLine.fLastClipRunLtr = this->fLastClipRunLtr;
2590 return textLine;