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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
LayoutState.h 57 , m_pageLogicalHeight(0)
81 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; }
90 bool needsBlockDirectionLocationSetBeforeLayout() const { return m_lineGrid || (m_isPaginated && m_pageLogicalHeight); }
130 LayoutUnit m_pageLogicalHeight;
LayoutState.cpp 87 m_pageLogicalHeight = pageLogicalHeight;
94 m_pageLogicalHeight = m_next->m_pageLogicalHeight;
101 m_pageLogicalHeight = 0;
123 m_isPaginated = m_pageLogicalHeight || m_columnInfo || renderer->isRenderFlowThread();
147 , m_pageLogicalHeight(0)
176 m_pageLogicalHeight = m_next->m_pageLogicalHeight;
RenderView.h 150 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; }
153 if (m_pageLogicalHeight != height) {
154 m_pageLogicalHeight = height;
277 LayoutUnit m_pageLogicalHeight;
RenderView.cpp 56 , m_pageLogicalHeight(0)
180 bool shouldInheritPagination = seamlessLayoutState && !m_pageLogicalHeight && seamlessAncestor->style()->writingMode() == style()->writingMode();
182 state.m_pageLogicalHeight = shouldInheritPagination ? seamlessLayoutState->m_pageLogicalHeight : m_pageLogicalHeight;
184 state.m_isPaginated = state.m_pageLogicalHeight;
    [all...]
RenderBlock.cpp     [all...]

Completed in 352 milliseconds