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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.h 73 RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
74 const RenderLineBoxList* lineBoxes() const { return &m_lineBoxes; }
76 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
77 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
164 virtual void dirtyLinesFromChangedChild(RenderObject* child) OVERRIDE FINAL { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
184 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 89 RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
92 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
93 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
353 virtual void dirtyLinesFromChangedChild(RenderObject* child) OVERRIDE FINAL { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
476 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 53 RenderLineBoxList m_lineBoxes;
127 m_lineBoxes.deleteLineBoxes();
    [all...]

Completed in 433 milliseconds