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 69 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(); }
163 virtual void dirtyLinesFromChangedChild(RenderObject* child) OVERRIDE FINAL { m_lineBoxes.dirtyLinesFromChangedChild(this, child); }
185 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 103 RenderLineBoxList* lineBoxes() { return &m_lineBoxes; }
104 const RenderLineBoxList* lineBoxes() const { return &m_lineBoxes; }
106 InlineFlowBox* firstLineBox() const { return m_lineBoxes.firstLineBox(); }
107 InlineFlowBox* lastLineBox() const { return m_lineBoxes.lastLineBox(); }
    [all...]

Completed in 27 milliseconds