Lines Matching refs:endOfClusters
81 void TextWrapper::lookAhead(SkScalar maxWidth, Cluster* endOfClusters, bool applyRoundingHack,
91 TextTabAlign textTabAlign(endOfClusters->getOwner()->paragraphStyle().getTextTab());
92 textTabAlign.init(maxWidth, endOfClusters);
97 for (auto cluster = fEndLine.endCluster(); cluster < endOfClusters; ++cluster) {
151 for (auto further = cluster; further != endOfClusters; ++further) {
324 std::tuple<Cluster*, size_t, SkScalar> TextWrapper::trimStartSpaces(Cluster* endOfClusters) {
341 while (cluster < endOfClusters && cluster->isWhitespaceBreak() && !cluster->isTabulation()) {
346 if (fEndLine.breakCluster()->isWhitespaceBreak() && fEndLine.breakCluster() < endOfClusters) {
1000 void TextWrapper::lookAhead(SkScalar maxWidth, Cluster* endOfClusters, bool applyRoundingHack) {
1008 for (auto cluster = fEndLine.endCluster(); cluster < endOfClusters; ++cluster) {
1039 for (auto further = cluster; further != endOfClusters; ++further) {
1175 std::tuple<Cluster*, size_t, SkScalar> TextWrapper::trimStartSpaces(Cluster* endOfClusters) {
1190 while (cluster < endOfClusters && cluster->isWhitespaceBreak()) {
1194 if (fEndLine.breakCluster()->isWhitespaceBreak() && fEndLine.breakCluster() < endOfClusters) {