Searched refs:pageLogicalHeight (Results 1 - 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DLayoutState.cpp37 LayoutState::LayoutState(LayoutState* prev, RenderBox* renderer, const IntSize& offset, int pageLogicalHeight, bool pageLogicalHeightChanged, ColumnInfo* columnInfo) argument
85 if (pageLogicalHeight || m_columnInfo) {
86 m_pageLogicalHeight = pageLogicalHeight;
H A DLayoutState.h76 bool pageLogicalHeight() const { return m_pageLogicalHeight; } function in class:WebCore::LayoutState
H A DRenderBlock.cpp1186 void RenderBlock::layoutBlock(bool relayoutChildren, int pageLogicalHeight) argument
1221 if (!pageLogicalHeight) {
1227 pageLogicalHeight = columnHeight;
1232 if (colInfo->columnHeight() != pageLogicalHeight && m_everHadLayout) {
1233 colInfo->setColumnHeight(pageLogicalHeight);
1237 if (!hasSpecifiedPageLogicalHeight && !pageLogicalHeight)
1241 LayoutStateMaintainer statePusher(view(), this, IntSize(x(), y()), hasColumns() || hasTransform() || hasReflection() || style()->isFlippedBlocksWritingMode(), pageLogicalHeight, pageLogicalHeightChanged, colInfo);
1293 if (layoutColumns(hasSpecifiedPageLogicalHeight, pageLogicalHeight, statePusher))
2263 if (view()->layoutState()->pageLogicalHeightChanged() || (view()->layoutState()->pageLogicalHeight() && view()->layoutState()->pageLogicalOffset(logicalTop()) != pageLogicalOffset()))
4407 bool RenderBlock::layoutColumns(bool hasSpecifiedPageLogicalHeight, int pageLogicalHeight, LayoutStateMaintaine argument
4441 colInfo->setColumnCountAndHeight(ceilf((float)contentLogicalHeight() / pageLogicalHeight), pageLogicalHeight); local
6024 int pageLogicalHeight = layoutState->m_pageLogicalHeight; local
6083 int pageLogicalHeight = layoutState->m_pageLogicalHeight; local
6113 int pageLogicalHeight = layoutState->m_pageLogicalHeight; local
[all...]
H A DRenderTableRow.cpp145 if (!cell->needsLayout() && paginated && view()->layoutState()->pageLogicalHeight() && view()->layoutState()->pageLogicalOffset(cell->logicalTop()) != cell->pageLogicalOffset())
H A DRenderView.h140 unsigned pageLogicalHeight() const { return m_pageLogicalHeight; } function in class:WebCore::RenderView
H A DRenderBlock.h80 virtual void layoutBlock(bool relayoutChildren, int pageLogicalHeight = 0);
614 bool layoutColumns(bool hasSpecifiedPageLogicalHeight, int pageLogicalHeight, LayoutStateMaintainer&);
H A DRenderTableSection.cpp712 if (!cell->needsLayout() && view()->layoutState()->pageLogicalHeight() && view()->layoutState()->pageLogicalOffset(cell->logicalTop()) != cell->pageLogicalOffset())
718 if (style()->isHorizontalWritingMode() && view()->layoutState()->pageLogicalHeight() && cell->height() != rHeight)
H A DRenderFlexibleBox.cpp284 if (view()->layoutState()->pageLogicalHeight())
H A DRenderTable.cpp461 if (view()->layoutState()->pageLogicalHeight())
H A DRenderBox.cpp1883 visHeight = static_cast<int>(view()->pageLogicalHeight());
/external/webkit/Source/WebCore/page/
H A DPrintContext.cpp119 int pageLogicalHeight = isHorizontal ? pageHeight : pageWidth; local
148 unsigned pageCount = ceilf((float)docLogicalHeight / pageLogicalHeight);
151 blockDirectionStart + i * pageLogicalHeight :
152 blockDirectionStart - (i + 1) * pageLogicalHeight;
158 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
165 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
H A DFrameView.cpp2535 float pageLogicalHeight = root->style()->isHorizontalWritingMode() ? pageSize.height() : pageSize.width(); local
2539 root->setPageLogicalHeight(pageLogicalHeight);
2550 if (pageLogicalHeight)

Completed in 894 milliseconds