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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DLayoutState.h46 LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, RenderView&);
50 LayoutState(RenderBox&, const LayoutSize& offset, LayoutUnit pageLogicalHeight = 0, bool pageHeightLogicalChanged = false, ColumnInfo* = 0, bool containingBlockLogicalWidthChanged = false);
69 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; } function in class:blink::LayoutState
H A DLayoutState.cpp36 LayoutState::LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, RenderView& view) argument
37 : m_isPaginated(pageLogicalHeight)
42 , m_pageLogicalHeight(pageLogicalHeight)
49 LayoutState::LayoutState(RenderBox& renderer, const LayoutSize& offset, LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, ColumnInfo* columnInfo, bool containingBlockLogicalWidthChanged) argument
73 if (pageLogicalHeight || m_columnInfo || renderer.isRenderFlowThread()) {
74 m_pageLogicalHeight = pageLogicalHeight;
H A DRenderMultiColumnSet.cpp105 return logicalTopInFlowThread() + columnIndex * pageLogicalHeight();
256 LayoutUnit oldColumnHeight = pageLogicalHeight();
263 if (pageLogicalHeight() != oldColumnHeight)
321 if (!pageLogicalHeight())
329 unsigned count = ceil(logicalHeightInColumns.toFloat() / pageLogicalHeight().toFloat());
337 LayoutUnit colLogicalHeight = pageLogicalHeight();
373 return (offset - flowThreadLogicalTop).toFloat() / pageLogicalHeight().toFloat();
380 portionRect = LayoutRect(portionRect.x(), portionRect.y() + index * pageLogicalHeight(), portionRect.width(), pageLogicalHeight());
382 portionRect = LayoutRect(portionRect.x() + index * pageLogicalHeight(), portionRec
[all...]
H A DRenderFlowThread.cpp107 LayoutUnit regionLogicalHeight = columnSet->pageLogicalHeight();
183 return columnSet->pageLogicalHeight();
193 LayoutUnit pageLogicalHeight = columnSet->pageLogicalHeight(); local
194 LayoutUnit pageLogicalBottom = pageLogicalTop + pageLogicalHeight;
199 remainingHeight = intMod(remainingHeight, pageLogicalHeight);
H A DRenderRegion.h65 virtual LayoutUnit pageLogicalHeight() const;
H A DRenderBlockFlow.cpp208 void RenderBlockFlow::checkForPaginationLogicalHeightChange(LayoutUnit& pageLogicalHeight, bool& pageLogicalHeightChanged, bool& hasSpecifiedPageLogicalHeight) argument
219 if (!pageLogicalHeight) {
227 pageLogicalHeight = columnHeight;
232 if (colInfo->columnHeight() != pageLogicalHeight && everHadLayout()) {
233 colInfo->setColumnHeight(pageLogicalHeight);
237 if (!hasSpecifiedPageLogicalHeight && !pageLogicalHeight)
251 pageLogicalHeight = flowThread->isPageLogicalHeightKnown() ? LayoutUnit(1) : LayoutUnit(0);
257 bool RenderBlockFlow::shouldRelayoutForPagination(LayoutUnit& pageLogicalHeight, LayoutUnit layoutOverflowLogicalBottom) const argument
262 LayoutUnit columnHeight = pageLogicalHeight;
268 if (!pageLogicalHeight) {
286 setColumnCountAndHeight(unsigned count, LayoutUnit pageLogicalHeight) argument
360 LayoutUnit pageLogicalHeight = 0; local
393 layoutBlockFlow(bool relayoutChildren, LayoutUnit &pageLogicalHeight, SubtreeLayoutScope& layoutScope) argument
832 LayoutUnit pageLogicalHeight = pageLogicalHeightForOffset(logicalOffset); local
882 LayoutUnit pageLogicalHeight = pageLogicalHeightForOffset(logicalOffset); local
[all...]
H A DRenderRegion.cpp55 LayoutUnit RenderRegion::pageLogicalHeight() const function in class:blink::RenderRegion
H A DRenderBlockFlow.h235 bool layoutBlockFlow(bool relayoutChildren, LayoutUnit& pageLogicalHeight, SubtreeLayoutScope&);
298 void checkForPaginationLogicalHeightChange(LayoutUnit& pageLogicalHeight, bool& pageLogicalHeightChanged, bool& hasSpecifiedPageLogicalHeight);
299 bool shouldRelayoutForPagination(LayoutUnit& pageLogicalHeight, LayoutUnit layoutOverflowLogicalBottom) const;
300 void setColumnCountAndHeight(unsigned count, LayoutUnit pageLogicalHeight);
H A DRenderMultiColumnSet.h62 virtual LayoutUnit pageLogicalHeight() const OVERRIDE FINAL { return m_columnHeight; }
H A DRenderMultiColumnFlowThread.cpp319 return columnSet->pageLogicalHeight();
H A DRenderView.h119 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; } function in class:blink::FINAL
H A DRenderBlock.cpp1752 if (view()->layoutState()->pageLogicalHeightChanged() || (view()->layoutState()->pageLogicalHeight() && view()->layoutState()->pageLogicalOffset(*this, logicalTop()) != pageLogicalOffset()))
4040 LayoutUnit pageLogicalHeight = pageLogicalHeightForOffset(logicalOffset); local
4041 if (!pageLogicalHeight)
4047 return logicalOffset + (remainingLogicalHeight ? remainingLogicalHeight : pageLogicalHeight);
4056 return renderView->layoutState()->pageLogicalHeight();
4067 LayoutUnit pageLogicalHeight = renderView->layoutState()->pageLogicalHeight(); local
4068 LayoutUnit remainingHeight = pageLogicalHeight - intMod(offset, pageLogicalHeight);
4072 remainingHeight = intMod(remainingHeight, pageLogicalHeight);
[all...]
H A DRenderView.cpp223 LayoutState rootLayoutState(pageLogicalHeight(), pageLogicalHeightChanged(), *this);
799 return pageLogicalHeight();
H A DRenderDeprecatedFlexibleBox.cpp292 if (view()->layoutState()->pageLogicalHeight())
H A DRenderTable.cpp563 if (view()->layoutState()->pageLogicalHeight())
H A DRenderTableSection.cpp1044 if (view()->layoutState()->pageLogicalHeight() && cell->logicalHeight() != rHeight) {
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContext.cpp108 int pageLogicalHeight = isHorizontal ? pageHeight : pageWidth; local
137 unsigned pageCount = ceilf((float)docLogicalHeight / pageLogicalHeight);
140 blockDirectionStart + i * pageLogicalHeight :
141 blockDirectionStart - (i + 1) * pageLogicalHeight;
147 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
154 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DFrameView.cpp2746 float pageLogicalHeight = renderView->style()->isHorizontalWritingMode() ? pageSize.height() : pageSize.width(); local
2749 LayoutUnit flooredPageLogicalHeight = static_cast<LayoutUnit>(pageLogicalHeight);
2766 pageLogicalHeight = horizontalWritingMode ? maxPageSize.height() : maxPageSize.width();
2769 flooredPageLogicalHeight = static_cast<LayoutUnit>(pageLogicalHeight);

Completed in 334 milliseconds