Home
last modified time | relevance | path

Searched refs:clusterRange (Results 1 – 4 of 4) sorted by relevance

/external/skia/modules/skparagraph/src/
DParagraphImpl.cpp818 SkSpan<Cluster> ParagraphImpl::clusters(ClusterRange clusterRange) { in clusters() argument
819 SkASSERT(clusterRange.start < fClusters.size() && clusterRange.end <= fClusters.size()); in clusters()
820 return SkSpan<Cluster>(&fClusters[clusterRange.start], clusterRange.width()); in clusters()
DParagraphImpl.h165 SkSpan<Cluster> clusters(ClusterRange clusterRange);
DRun.h107 ClusterRange clusterRange() const { return fClusterRange; } in clusterRange() function
DTextLine.cpp724 auto trimmedRange = fClusterRange.intersection(run.clusterRange()); in iterateThroughClustersInGlyphsOrder()
725 auto trailedRange = fGhostClusterRange.intersection(run.clusterRange()); in iterateThroughClustersInGlyphsOrder()