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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLineBoxList.h41 , m_lastLineBox(0)
50 InlineFlowBox* lastLineBox() const { return m_lastLineBox; }
77 InlineFlowBox* m_lastLineBox; member in class:blink::RenderLineBoxList
H A DRenderLineBoxList.cpp46 ASSERT(!m_lastLineBox);
55 m_firstLineBox = m_lastLineBox = box;
57 m_lastLineBox->setNextLineBox(box);
58 box->setPreviousLineBox(m_lastLineBox);
59 m_lastLineBox = box;
74 m_firstLineBox = m_lastLineBox = 0;
81 m_lastLineBox = box->prevLineBox();
97 if (m_lastLineBox) {
98 m_lastLineBox->setNextLineBox(box);
99 box->setPreviousLineBox(m_lastLineBox);
[all...]

Completed in 580 milliseconds