Searched refs:pageLogicalWidth (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | PrintContext.cpp | 109 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/ |
D | RenderMultiColumnSet.h | 107 virtual LayoutUnit pageLogicalWidth() const OVERRIDE { return m_computedColumnWidth; } in pageLogicalWidth() function
|
D | RenderFlowThread.cpp | 174 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()
|
D | RenderRegion.h | 91 virtual LayoutUnit pageLogicalWidth() const;
|
D | RenderRegion.cpp | 56 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/ |
D | FrameView.cpp | 3126 …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()
|