Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/page/
DPrintContext.cpp100 IntRect docRect = view->documentRect(); in computePageRectsWithPageSizeInternal() local
107 int docLogicalHeight = isHorizontal ? docRect.height() : docRect.width(); in computePageRectsWithPageSizeInternal()
117 blockDirectionStart = docRect.maxY(); in computePageRectsWithPageSizeInternal()
118 blockDirectionEnd = docRect.y(); in computePageRectsWithPageSizeInternal()
120 blockDirectionStart = docRect.y(); in computePageRectsWithPageSizeInternal()
121 blockDirectionEnd = docRect.maxY(); in computePageRectsWithPageSizeInternal()
123 … inlineDirectionStart = view->style()->isLeftToRightDirection() ? docRect.x() : docRect.maxX(); in computePageRectsWithPageSizeInternal()
124 inlineDirectionEnd = view->style()->isLeftToRightDirection() ? docRect.maxX() : docRect.x(); in computePageRectsWithPageSizeInternal()
127 blockDirectionStart = docRect.maxX(); in computePageRectsWithPageSizeInternal()
128 blockDirectionEnd = docRect.x(); in computePageRectsWithPageSizeInternal()
[all …]