Searched defs:m_lineBoxes (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderInline.h63 RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
64 const RenderLineBoxList* lineBoxes() const { return &m_lineBoxes; }
66 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
67 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
146 virtual void dirtyLinesFromChangedChild(RenderObject* child) { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
169 RenderLineBoxList m_lineBoxes; // All of the line boxes created for this inline flow. For example, <i>Hello<br>world.</i> will have two <i> line boxes. member in class:WebCore::RenderInline
H A DRenderBlock.h69 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>. member in class:WebCore::RenderBlock

Completed in 46 milliseconds