HomeSort by relevance Sort by last modified time
    Searched refs:m_lastLineBox (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/rendering/
RenderLineBoxList.h 41 , m_lastLineBox(0)
50 InlineFlowBox* lastLineBox() const { return m_lastLineBox; }
74 InlineFlowBox* m_lastLineBox;
RenderLineBoxList.cpp 46 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->prevFlowBox();
97 if (m_lastLineBox) {
98 m_lastLineBox->setNextLineBox(box);
99 box->setPreviousLineBox(m_lastLineBox);
    [all...]

Completed in 1056 milliseconds