Lines Matching defs:run
110 for (auto& run : fRuns) {
111 fTextMetrics.merge(run.textMetrics());
112 fActualWidth += run.width(); // What about trailing spaces?
113 if (run.trailingSpacesStart() == 0) {
114 // The entire run is trailing spaces, do not move the counter
117 fTrailingSpaces.fStart = fTrailingSpaces.fEnd + run.trailingSpacesStart();
119 fTrailingSpaces.fEnd += run.size();
129 bool isFirst(VisualRun* run) { return &fRuns.front() == run; }
130 bool isLast(VisualRun* run) { return &fRuns.back() == run; }