HomeSort by relevance Sort by last modified time
    Searched refs:m_lineBoxes (Results 1 - 5 of 5) sorted by null

  /external/webkit/WebCore/rendering/
RenderInline.h 56 RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
57 const RenderLineBoxList* lineBoxes() const { return &m_lineBoxes; }
59 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
60 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
125 virtual void dirtyLinesFromChangedChild(RenderObject* child) { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
151 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.
RenderBlock.h 61 RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
62 const RenderLineBoxList* lineBoxes() const { return &m_lineBoxes; }
64 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
65 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
215 virtual void dirtyLinesFromChangedChild(RenderObject* child) { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
532 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>.
RenderInline.cpp 90 m_lineBoxes.deleteLineBoxes(renderArena());
408 m_lineBoxes.paint(this, paintInfo, tx, ty);
498 return m_lineBoxes.hitTest(this, request, result, x, y, tx, ty, hitTestAction);
    [all...]
RenderBlock.cpp 199 m_lineBoxes.deleteLineBoxes(renderArena());
390 m_lineBoxes.deleteLineBoxTree(renderArena());
401 m_lineBoxes.appendLineBox(rootBox);
    [all...]
RenderBlockLineLayout.cpp     [all...]

Completed in 157 milliseconds