Home
last modified time | relevance | path

Searched refs:pageLogicalWidth (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
DPrintContext.cpp109 int pageLogicalWidth = isHorizontal ? pageWidth : pageHeight; in computePageRectsWithPageSizeInternal() local
145 …nePosition += (inlineDirectionEnd > inlineDirectionStart ? pageLogicalWidth : -pageLogicalWidth)) { in computePageRectsWithPageSizeInternal()
146 …ctionEnd > inlineDirectionStart ? currentInlinePosition : currentInlinePosition - pageLogicalWidth; in computePageRectsWithPageSizeInternal()
147 … IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight); in computePageRectsWithPageSizeInternal()
153 …rectionEnd > inlineDirectionStart ? inlineDirectionStart : inlineDirectionStart - pageLogicalWidth; in computePageRectsWithPageSizeInternal()
154 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight); in computePageRectsWithPageSizeInternal()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderMultiColumnSet.h107 virtual LayoutUnit pageLogicalWidth() const OVERRIDE { return m_computedColumnWidth; } in pageLogicalWidth() function
DRenderFlowThread.cpp174 LayoutUnit regionLogicalWidth = region->pageLogicalWidth(); in validateRegions()
232 logicalWidth = max(region->pageLogicalWidth(), logicalWidth); in updateLogicalWidth()
239 LayoutUnit regionLogicalWidth = region->pageLogicalWidth(); in updateLogicalWidth()
519 return region ? region->pageLogicalWidth() : contentLogicalWidth(); in pageLogicalWidthForOffset()
902 LayoutUnit regionLogicalWidth = region->pageLogicalWidth(); in updateRegionsFlowThreadPortionRect()
DRenderRegion.h91 virtual LayoutUnit pageLogicalWidth() const;
DRenderRegion.cpp56 LayoutUnit RenderRegion::pageLogicalWidth() const in pageLogicalWidth() function in WebCore::RenderRegion
303 …if (!isRenderRegionSet() && (oldRegionRect.width() != pageLogicalWidth() || oldRegionRect.height()… in layoutBlock()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DFrameView.cpp3126 …float pageLogicalWidth = renderView->style()->isHorizontalWritingMode() ? pageSize.width() : pageS… in forceLayoutForPagination() local
3129 LayoutUnit flooredPageLogicalWidth = static_cast<LayoutUnit>(pageLogicalWidth); in forceLayoutForPagination()
3143 if (docLogicalWidth > pageLogicalWidth) { in forceLayoutForPagination()
3147 pageLogicalWidth = horizontalWritingMode ? maxPageSize.width() : maxPageSize.height(); in forceLayoutForPagination()
3150 flooredPageLogicalWidth = static_cast<LayoutUnit>(pageLogicalWidth); in forceLayoutForPagination()
3163 clippedLogicalLeft = docLogicalRight - pageLogicalWidth; in forceLayoutForPagination()
3164 … LayoutRect overflow(clippedLogicalLeft, docLogicalTop, pageLogicalWidth, docLogicalHeight); in forceLayoutForPagination()