Home
last modified time | relevance | path

Searched refs:m_lineGrid (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DLayoutState.cpp38 , m_lineGrid(0) in LayoutState()
143 , m_lineGrid(0) in LayoutState()
201 m_lineGrid = m_next->m_lineGrid; in propagateLineGridInfo()
209 if (m_lineGrid) { in establishLineGrid()
210 if (m_lineGrid->style()->lineGrid() == block->style()->lineGrid()) in establishLineGrid()
212 RenderBlockFlow* currentGrid = m_lineGrid; in establishLineGrid()
214 if (currentState->m_lineGrid == currentGrid) in establishLineGrid()
216 currentGrid = currentState->m_lineGrid; in establishLineGrid()
220 m_lineGrid = currentGrid; in establishLineGrid()
228 m_lineGrid = block; in establishLineGrid()
DLayoutState.h54 , m_lineGrid(0) in LayoutState()
84 RenderBlockFlow* lineGrid() const { return m_lineGrid; } in lineGrid()
90 …bool needsBlockDirectionLocationSetBeforeLayout() const { return m_lineGrid || (m_isPaginated && m… in needsBlockDirectionLocationSetBeforeLayout()
116 RenderBlockFlow* m_lineGrid; variable
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DStyleRareInheritedData.cpp91 , m_lineGrid(RenderStyle::initialLineGrid()) in StyleRareInheritedData()
146 , m_lineGrid(o.m_lineGrid) in StyleRareInheritedData()
211 && m_lineGrid == o.m_lineGrid in operator ==()
DStyleRareInheritedData.h118 AtomicString m_lineGrid; variable
DRenderStyle.cpp478 || rareInheritedData->m_lineGrid != other->rareInheritedData->m_lineGrid in diff()
DRenderStyle.h874 const AtomicString& lineGrid() const { return rareInheritedData->m_lineGrid; } in lineGrid()
1319 …void setLineGrid(const AtomicString& lineGrid) { SET_VAR(rareInheritedData, m_lineGrid, lineGrid);… in setLineGrid()