HomeSort by relevance Sort by last modified time
    Searched defs:m_lineBoxes (Results 1 - 2 of 2) 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>.

Completed in 42 milliseconds