Lines Matching defs:fLines
38 const std::vector<TextLine>& fLines;
45 Iterator begin() const { return Iterator{fLines.begin()}; }
46 Iterator end() const { return Iterator{fLines.end()}; }
53 Text text() const { return Text{fLines}; }
56 int lineHeight(size_t index) const { return fLines[index].fHeight; }
84 size_t lineCount() const { return fLines.size(); }
86 return i < fLines.size() ? fLines[i].fText.view() : StringView{nullptr, 0};
102 // TODO: rename this to TextParagraph. fLines to fParas.
116 std::vector<TextLine> fLines;