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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.h 72 RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
73 const RenderLineBoxList* lineBoxes() const { return &m_lineBoxes; }
75 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
76 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
166 virtual void dirtyLinesFromChangedChild(RenderObject* child) OVERRIDE FINAL { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
188 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 92 RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
94 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
95 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
362 virtual void dirtyLinesFromChangedChild(RenderObject* child) OVERRIDE FINAL { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
527 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 53 milliseconds