Searched defs:m_lineBoxes (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderInline.h73 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. member in class:blink::RenderInline
H A DRenderBlock.h89 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>. member in class:blink::RenderBlock
H A DRenderInline.cpp53 RenderLineBoxList m_lineBoxes; member in struct:blink::SameSizeAsRenderInline
127 m_lineBoxes.deleteLineBoxes();
794 return m_lineBoxes.hitTest(this, request, result, locationInContainer, accumulatedOffset, hitTestAction);
1242 m_lineBoxes.deleteLineBoxes();
1268 m_lineBoxes.dirtyLineBoxes();
1273 m_lineBoxes.deleteLineBoxTree();
1285 m_lineBoxes.appendLineBox(flowBox);

Completed in 120 milliseconds