Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_lineBoxes

69     RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
70 const RenderLineBoxList* lineBoxes() const { return &m_lineBoxes; }
72 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
73 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
340 virtual void dirtyLinesFromChangedChild(RenderObject* child) { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
786 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>.