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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
LayoutState.h 45 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; }
LayoutState.cpp 36 LayoutState::LayoutState(LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, RenderView& view)
38 , m_isPaginated(pageLogicalHeight)
47 , m_pageLogicalHeight(pageLogicalHeight)
54 LayoutState::LayoutState(RenderBox& renderer, const LayoutSize& offset, LayoutUnit pageLogicalHeight, bool pageLogicalHeightChanged, ColumnInfo* columnInfo)
102 if (pageLogicalHeight || m_columnInfo || renderer.isRenderFlowThread()) {
103 m_pageLogicalHeight = pageLogicalHeight;
RenderMultiColumnSet.cpp 104 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(), portionRect.y(), pageLogicalHeight(), portionRect.height())
    [all...]
RenderRegion.h 68 virtual LayoutUnit pageLogicalHeight() const;
RenderFlowThread.cpp 109 LayoutUnit regionLogicalHeight = region->pageLogicalHeight();
287 return region->pageLogicalHeight();
297 LayoutUnit pageLogicalHeight = region->pageLogicalHeight();
298 LayoutUnit pageLogicalBottom = pageLogicalTop + pageLogicalHeight;
303 remainingHeight = intMod(remainingHeight, pageLogicalHeight);
RenderMultiColumnSet.h 62 virtual LayoutUnit pageLogicalHeight() const OVERRIDE FINAL { return m_columnHeight; }
RenderBlockFlow.cpp 194 void RenderBlockFlow::checkForPaginationLogicalHeightChange(LayoutUnit& pageLogicalHeight, bool& pageLogicalHeightChanged, bool& hasSpecifiedPageLogicalHeight)
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
248 LayoutUnit columnHeight = pageLogicalHeight;
254 if (!pageLogicalHeight) {
    [all...]
RenderBlockFlow.h 230 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);
RenderRegion.cpp 57 LayoutUnit RenderRegion::pageLogicalHeight() const
RenderBlock.cpp     [all...]
RenderMultiColumnFlowThread.cpp 319 return columnSet->pageLogicalHeight();
RenderView.h 141 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; }
RenderView.cpp 257 LayoutState rootLayoutState(pageLogicalHeight(), pageLogicalHeightChanged(), *this);
    [all...]
RenderDeprecatedFlexibleBox.cpp 305 if (view()->layoutState()->pageLogicalHeight())
    [all...]
RenderTable.cpp 568 if (view()->layoutState()->pageLogicalHeight())
    [all...]
RenderTableSection.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PrintContext.cpp 108 int pageLogicalHeight = isHorizontal ? pageHeight : pageWidth;
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/
FrameView.cpp     [all...]

Completed in 187 milliseconds