Home
last modified time | relevance | path

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

/external/skia/modules/skparagraph/src/
DRun.cpp26 , fClusterRange(EMPTY_CLUSTERS) in Run()
122 …return std::make_tuple(startIndex != fClusterRange.end && endIndex != fClusterRange.end, startInde… in findLimitingClusters()
135 for (size_t index = 0; index < fClusterRange.width(); ++index) { in iterateThroughClusters()
136 … auto correctIndex = leftToRight() ? fClusterRange.start + index : fClusterRange.end - index - 1; in iterateThroughClusters()
DTextLine.h59 ClusterRange clusters() const { return fClusterRange; } in clusters()
137 ClusterRange fClusterRange; variable
DRun.h107 ClusterRange clusterRange() const { return fClusterRange; } in clusterRange()
116 void setClusterRange(size_t from, size_t to) { fClusterRange = ClusterRange(from, to); } in setClusterRange()
176 ClusterRange fClusterRange; variable
DTextLine.cpp95 , fClusterRange(clusters) in TextLine()
724 auto trimmedRange = fClusterRange.intersection(run.clusterRange()); in iterateThroughClustersInGlyphsOrder()