Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_lineBoxes

103     RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
104 const RenderLineBoxList* lineBoxes() const { return &m_lineBoxes; }
106 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
107 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
612 virtual void dirtyLinesFromChangedChild(RenderObject* child) OVERRIDE FINAL { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
1305 RenderLineBoxList m_lineBoxes; // All of the root line boxes created for this block flow. For example, <div>Hello<br>world.</div> will have two total lines for the <div>.