Home
last modified time | relevance | path

Searched refs:m_lastLineBox (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderLineBoxList.cpp47 ASSERT(!m_lastLineBox); in ~RenderLineBoxList()
56 m_firstLineBox = m_lastLineBox = box; in appendLineBox()
58 m_lastLineBox->setNextLineBox(box); in appendLineBox()
59 box->setPreviousLineBox(m_lastLineBox); in appendLineBox()
60 m_lastLineBox = box; in appendLineBox()
75 m_firstLineBox = m_lastLineBox = 0; in deleteLineBoxTree()
82 m_lastLineBox = box->prevLineBox(); in extractLineBox()
98 if (m_lastLineBox) { in attachLineBox()
99 m_lastLineBox->setNextLineBox(box); in attachLineBox()
100 box->setPreviousLineBox(m_lastLineBox); in attachLineBox()
[all …]
DRenderLineBoxList.h41 , m_lastLineBox(0) in RenderLineBoxList()
50 InlineFlowBox* lastLineBox() const { return m_lastLineBox; } in lastLineBox()
78 InlineFlowBox* m_lastLineBox; variable