Home
last modified time | relevance | path

Searched refs:isSoftBreak (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/modules/skparagraph/src/
DRun.h302 bool isSoftBreak() const;
304 bool canBreakLineAfter() const { return isHardBreak() || isSoftBreak(); } in canBreakLineAfter()
DTextWrapper.h62 (fEnd.cluster()->isHardBreak() || fEnd.cluster()->isSoftBreak()); in endOfWord()
DRun.cpp316 bool Cluster::isSoftBreak() const { in isSoftBreak() function in skia::textlayout::Cluster
DTextWrapper.cpp85 … if (further->isSoftBreak() || further->isHardBreak() || further->isWhitespaceBreak()) { in lookAhead()
DParagraphImpl.cpp458 if (cluster->isWhitespaceBreak() && cluster->isSoftBreak()) { in spaceGlyphs()
/third_party/flutter/skia/modules/skparagraph/src/
DTextWrapper.h59 (fEnd.cluster()->isHardBreak() || fEnd.cluster()->isSoftBreak()); in endOfWord()
DTextWrapper.cpp34 if (further->isSoftBreak() || further->isHardBreak()) { in lookAhead()
DRun.h242 bool isSoftBreak() const { return fBreakType == SoftLineBreak; } in isSoftBreak() function
DParagraphImpl.cpp299 if (cluster->isWhitespaces() && cluster->isSoftBreak()) { in markLineBreaks()
/third_party/skia/modules/skparagraph/samples/
DSampleParagraph.cpp2583 cluster.isSoftBreak() ? "soft" : in onDrawContent()