Home
last modified time | relevance | path

Searched refs:fParagraphStyle (Results 1 – 12 of 12) sorted by relevance

/third_party/flutter/skia/modules/skparagraph/src/
DParagraphBuilderImpl.cpp27 fParagraphStyle = style; in setParagraphStyle()
28 fTextStyles.push(fParagraphStyle.getTextStyle()); in setParagraphStyle()
29 fStyledBlocks.emplace_back(fUtf8.size(), fUtf8.size(), fParagraphStyle.getTextStyle()); in setParagraphStyle()
66 return fParagraphStyle.getTextStyle(); in peekStyle()
102 fUtf8, fParagraphStyle, fStyledBlocks, fFontCollection); in Build()
DParagraphCache.cpp14 , fParagraphStyle(paragraph->paragraphStyle()) { } in ParagraphCacheKey()
19 ParagraphStyle fParagraphStyle; member in skia::textlayout::ParagraphCacheKey
83 if (a.fParagraphStyle.getMaxLines() != b.fParagraphStyle.getMaxLines()) { in operator ==()
DParagraphImpl.h65 return !fParagraphStyle.unlimited_lines() && fLines.size() > fParagraphStyle.getMaxLines(); in didExceedMaxLines()
82 const ParagraphStyle& paragraphStyle() const { return fParagraphStyle; } in paragraphStyle()
DParagraphBuilderImpl.h62 ParagraphStyle fParagraphStyle; variable
DParagraphImpl.cpp380 fParagraphStyle.getTextDirection() == TextDirection::kLtr ? (uint8_t)2 in shapeTextIntoEndlessLine()
391 if (fParagraphStyle.getTextAlign() == TextAlign::kJustify) { in shapeTextIntoEndlessLine()
423 line.createEllipsis(maxWidth, fParagraphStyle.getEllipsis(), true); in breakShapedTextIntoLines()
435 auto effectiveAlign = fParagraphStyle.effective_align(); in formatLines()
/third_party/skia/modules/skparagraph/src/
DParagraphCache.cpp32 , fParagraphStyle(paragraph->paragraphStyle()) { } in ParagraphCacheKey()
37 ParagraphStyle fParagraphStyle; member in skia::textlayout::ParagraphCacheKey
109 hash = mix(hash, SkGoodHash()(relax(key.fParagraphStyle.getHeight()))); in operator ()()
110 hash = mix(hash, SkGoodHash()(key.fParagraphStyle.getTextDirection())); in operator ()()
112 auto& strutStyle = key.fParagraphStyle.getStrutStyle(); in operator ()()
144 if (!exactlyEqual(a.fParagraphStyle.getHeight(), b.fParagraphStyle.getHeight())) { in operator ==()
147 if (a.fParagraphStyle.getTextDirection() != b.fParagraphStyle.getTextDirection()) { in operator ==()
151 if (!(a.fParagraphStyle.getStrutStyle() == b.fParagraphStyle.getStrutStyle())) { in operator ==()
DParagraphImpl.cpp53 , fParagraphStyle(std::move(style)) in Paragraph()
149 if (fParagraphStyle.getStrutStyle().getStrutEnabled() && in layout()
150 fParagraphStyle.getStrutStyle().getForceStrutHeight()) { in layout()
200 if (fParagraphStyle.getMaxLines() == 1 || in layout()
201 (fParagraphStyle.unlimited_lines() && fParagraphStyle.ellipsized())) { in layout()
216 if (fParagraphStyle.getDrawOptions() == DrawOptions::kDirect) { in paint()
228 if (fParagraphStyle.getDrawOptions() == DrawOptions::kReplay) { in paint()
261 auto textDirection = fParagraphStyle.getTextDirection() == TextDirection::kLtr in computeCodeUnitProperties()
549 auto effectiveAlign = fParagraphStyle.effective_align(); in formatLines()
668 … results.emplace_back(SkRect::MakeXYWH(0, 0, 0, fHeight), fParagraphStyle.getTextDirection()); in getRectsForRange()
[all …]
DParagraphBuilderImpl.cpp59 fParagraphStyle = style; in setParagraphStyle()
60 fTextStyles.push(fParagraphStyle.getTextStyle()); in setParagraphStyle()
61 fStyledBlocks.emplace_back(fUtf8.size(), fUtf8.size(), fParagraphStyle.getTextStyle()); in setParagraphStyle()
98 return fParagraphStyle.getTextStyle(); in peekStyle()
161 … fUtf8, fParagraphStyle, fStyledBlocks, fPlaceholders, fFontCollection, std::move(fUnicode)); in Build()
DParagraphBuilderImpl.h80 ParagraphStyle fParagraphStyle; variable
DParagraphImpl.h143 const ParagraphStyle& paragraphStyle() const { return fParagraphStyle; }
/third_party/flutter/skia/modules/skparagraph/include/
DParagraph.h18 : fFontCollection(std::move(fonts)), fParagraphStyle(std::move(style)) {} in Paragraph()
61 ParagraphStyle fParagraphStyle; variable
/third_party/skia/modules/skparagraph/include/
DParagraph.h96 ParagraphStyle fParagraphStyle; variable