Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderText.cpp150 , m_firstTextBox(0) in RenderText()
170 ASSERT(!m_firstTextBox); in ~RenderText()
246 if (box == m_firstTextBox) in extractTextBox()
247 m_firstTextBox = 0; in extractTextBox()
265 m_firstTextBox = box; in attachTextBox()
280 if (box == m_firstTextBox) in removeTextBox()
281 m_firstTextBox = box->nextTextBox(); in removeTextBox()
300 m_firstTextBox = m_lastTextBox = 0; in deleteTextBoxes()
1173 return m_firstTextBox ? m_firstTextBox->x() : 0; in firstRunX()
1178 return m_firstTextBox ? m_firstTextBox->y() : 0; in firstRunY()
[all …]
DRenderText.h123 InlineTextBox* firstTextBox() const { return m_firstTextBox; } in firstTextBox()
208 InlineTextBox* m_firstTextBox; variable