Searched refs:m_lineBoxes (Results 1 - 5 of 5) 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
H A DRenderInline.cpp106 m_lineBoxes.deleteLineBoxes(renderArena());
465 m_lineBoxes.paint(this, paintInfo, tx, ty);
717 return m_lineBoxes.hitTest(this, request, result, x, y, tx, ty, hitTestAction);
1233 m_lineBoxes.deleteLineBoxes(renderArena());
1259 m_lineBoxes.dirtyLineBoxes();
1271 m_lineBoxes.appendLineBox(flowBox);
H A DRenderBlock.cpp198 m_lineBoxes.deleteLineBoxes(renderArena());
847 m_lineBoxes.deleteLineBoxTree(renderArena());
858 m_lineBoxes.appendLineBox(rootBox);
2407 m_lineBoxes.paint(this, paintInfo, tx, ty);
4083 if (m_lineBoxes.hitTest(this, request, result, x, y, tx, ty, hitTestAction))
H A DRenderBlockLineLayout.cpp1190 m_lineBoxes.appendLineBox(trailingFloatsLineBox);

Completed in 192 milliseconds