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

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DLayoutState.h45 LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, RenderView&);
49 LayoutState(RenderBox&, const LayoutSize& offset, LayoutUnit pageLogicalHeight = 0, bool pageHeightLogicalChanged = false, ColumnInfo* = 0);
78 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; } function in class:WebCore::LayoutState
H A DLayoutState.cpp36 LayoutState::LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, RenderView& view) argument
38 , m_isPaginated(pageLogicalHeight)
47 , m_pageLogicalHeight(pageLogicalHeight)
54 LayoutState::LayoutState(RenderBox& renderer, const LayoutSize& offset, LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, ColumnInfo* columnInfo) argument
102 if (pageLogicalHeight || m_columnInfo || renderer.isRenderFlowThread()) {
103 m_pageLogicalHeight = pageLogicalHeight;
H A DRenderMultiColumnSet.cpp104 return logicalTopInFlowThread() + columnIndex * pageLogicalHeight();
255 LayoutUnit oldColumnHeight = pageLogicalHeight();
262 if (pageLogicalHeight() != oldColumnHeight)
320 if (!pageLogicalHeight())
328 unsigned count = ceil(logicalHeightInColumns.toFloat() / pageLogicalHeight().toFloat());
336 LayoutUnit colLogicalHeight = pageLogicalHeight();
367 return (offset - flowThreadLogicalTop).toFloat() / pageLogicalHeight().toFloat();
374 portionRect = LayoutRect(portionRect.x(), portionRect.y() + index * pageLogicalHeight(), portionRect.width(), pageLogicalHeight());
376 portionRect = LayoutRect(portionRect.x() + index * pageLogicalHeight(), portionRec
[all...]
H A DRenderFlowThread.cpp109 LayoutUnit regionLogicalHeight = region->pageLogicalHeight();
287 return region->pageLogicalHeight();
297 LayoutUnit pageLogicalHeight = region->pageLogicalHeight(); local
298 LayoutUnit pageLogicalBottom = pageLogicalTop + pageLogicalHeight;
303 remainingHeight = intMod(remainingHeight, pageLogicalHeight);
H A DRenderRegion.h68 virtual LayoutUnit pageLogicalHeight() const;
H A DRenderBlockFlow.cpp194 void RenderBlockFlow::checkForPaginationLogicalHeightChange(LayoutUnit& pageLogicalHeight, bool& pageLogicalHeightChanged, bool& hasSpecifiedPageLogicalHeight) argument
205 if (!pageLogicalHeight) {
213 pageLogicalHeight = columnHeight;
218 if (colInfo->columnHeight() != pageLogicalHeight && everHadLayout()) {
219 colInfo->setColumnHeight(pageLogicalHeight);
223 if (!hasSpecifiedPageLogicalHeight && !pageLogicalHeight)
237 pageLogicalHeight = flowThread->isPageLogicalHeightKnown() ? LayoutUnit(1) : LayoutUnit(0);
243 bool RenderBlockFlow::shouldRelayoutForPagination(LayoutUnit& pageLogicalHeight, LayoutUnit layoutOverflowLogicalBottom) const argument
248 LayoutUnit columnHeight = pageLogicalHeight;
254 if (!pageLogicalHeight) {
272 setColumnCountAndHeight(unsigned count, LayoutUnit pageLogicalHeight) argument
310 LayoutUnit pageLogicalHeight = 0; local
338 layoutBlockFlow(bool relayoutChildren, LayoutUnit &pageLogicalHeight, SubtreeLayoutScope& layoutScope) argument
[all...]
H A DRenderBlockFlow.h230 bool layoutBlockFlow(bool relayoutChildren, LayoutUnit& pageLogicalHeight, SubtreeLayoutScope&);
299 void checkForPaginationLogicalHeightChange(LayoutUnit& pageLogicalHeight, bool& pageLogicalHeightChanged, bool& hasSpecifiedPageLogicalHeight);
300 bool shouldRelayoutForPagination(LayoutUnit& pageLogicalHeight, LayoutUnit layoutOverflowLogicalBottom) const;
301 void setColumnCountAndHeight(unsigned count, LayoutUnit pageLogicalHeight);
H A DRenderMultiColumnSet.h62 virtual LayoutUnit pageLogicalHeight() const OVERRIDE FINAL { return m_columnHeight; }
H A DRenderRegion.cpp57 LayoutUnit RenderRegion::pageLogicalHeight() const function in class:WebCore::RenderRegion
H A DRenderBlock.cpp1728 if (view()->layoutState()->pageLogicalHeightChanged() || (view()->layoutState()->pageLogicalHeight() && view()->layoutState()->pageLogicalOffset(*this, logicalTop()) != pageLogicalOffset()))
4580 LayoutUnit pageLogicalHeight = pageLogicalHeightForOffset(logicalOffset); local
4581 if (!pageLogicalHeight)
4587 return logicalOffset + (remainingLogicalHeight ? remainingLogicalHeight : pageLogicalHeight);
4600 LayoutUnit pageLogicalHeight = renderView->layoutState()->pageLogicalHeight(); local
4601 if (!pageLogicalHeight)
4603 return cumulativeOffset - roundToInt(cumulativeOffset - firstPageLogicalTop) % roundToInt(pageLogicalHeight);
4613 return renderView->layoutState()->pageLogicalHeight();
4624 LayoutUnit pageLogicalHeight local
4646 LayoutUnit pageLogicalHeight = pageLogicalHeightForOffset(logicalOffset); local
4717 LayoutUnit pageLogicalHeight = pageLogicalHeightForOffset(logicalOffset); local
[all...]
H A DRenderMultiColumnFlowThread.cpp319 return columnSet->pageLogicalHeight();
H A DRenderView.h141 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; } function in class:WebCore::FINAL
H A DRenderView.cpp257 LayoutState rootLayoutState(pageLogicalHeight(), pageLogicalHeightChanged(), *this);
904 return pageLogicalHeight();
H A DRenderDeprecatedFlexibleBox.cpp305 if (view()->layoutState()->pageLogicalHeight())
H A DRenderTable.cpp568 if (view()->layoutState()->pageLogicalHeight())
H A DRenderTableSection.cpp982 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.cpp2906 float pageLogicalHeight = renderView->style()->isHorizontalWritingMode() ? pageSize.height() : pageSize.width(); local
2909 LayoutUnit flooredPageLogicalHeight = static_cast<LayoutUnit>(pageLogicalHeight);
2926 pageLogicalHeight = horizontalWritingMode ? maxPageSize.height() : maxPageSize.width();
2929 flooredPageLogicalHeight = static_cast<LayoutUnit>(pageLogicalHeight);

Completed in 245 milliseconds