Home | History | Annotate | Download | only in gfx

Lines Matching refs:lines_

381     DCHECK(!lines_.empty());
384 lines_.pop_back();
386 lines->swap(lines_);
390 // A (line index, segment index) pair that specifies a segment in |lines_|.
394 return &lines_[handle.first].segments[handle.second];
397 // Breaks a run into segments that fit in the last line in |lines_| and adds
398 // them. Adds a new Line to the back of |lines_| whenever a new segment can't
434 // Finishes the size calculations of the last Line in |lines_|. Adds a new
435 // Line to the back of |lines_|.
437 if (!lines_.empty()) {
438 lines_.back();
459 lines_.push_back(Line());
462 // Adds a new segment with the given properties to |lines_.back()|.
478 Line* line = &lines_.back();
482 rtl_segments_.push_back(SegmentHandle(lines_.size() - 1,
502 std::vector<Line> lines_;
511 // Ascent and descent values of the current line, |lines_.back()|.