Searched refs:fParagraphStyle (Results 1 – 12 of 12) sorted by relevance
/third_party/flutter/skia/modules/skparagraph/src/ |
D | ParagraphBuilderImpl.cpp | 27 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()
|
D | ParagraphCache.cpp | 14 , fParagraphStyle(paragraph->paragraphStyle()) { } in ParagraphCacheKey() 19 ParagraphStyle fParagraphStyle; member in skia::textlayout::ParagraphCacheKey 83 if (a.fParagraphStyle.getMaxLines() != b.fParagraphStyle.getMaxLines()) { in operator ==()
|
D | ParagraphImpl.h | 65 return !fParagraphStyle.unlimited_lines() && fLines.size() > fParagraphStyle.getMaxLines(); in didExceedMaxLines() 82 const ParagraphStyle& paragraphStyle() const { return fParagraphStyle; } in paragraphStyle()
|
D | ParagraphBuilderImpl.h | 62 ParagraphStyle fParagraphStyle; variable
|
D | ParagraphImpl.cpp | 380 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/ |
D | ParagraphCache.cpp | 32 , 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 ==()
|
D | ParagraphImpl.cpp | 53 , 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 …]
|
D | ParagraphBuilderImpl.cpp | 59 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()
|
D | ParagraphBuilderImpl.h | 80 ParagraphStyle fParagraphStyle; variable
|
D | ParagraphImpl.h | 143 const ParagraphStyle& paragraphStyle() const { return fParagraphStyle; }
|
/third_party/flutter/skia/modules/skparagraph/include/ |
D | Paragraph.h | 18 : fFontCollection(std::move(fonts)), fParagraphStyle(std::move(style)) {} in Paragraph() 61 ParagraphStyle fParagraphStyle; variable
|
/third_party/skia/modules/skparagraph/include/ |
D | Paragraph.h | 96 ParagraphStyle fParagraphStyle; variable
|