Searched defs:pageRect (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContext.h57 const IntRect& pageRect(size_t pageNumber) const { return m_pageRects[pageNumber]; } function in class:WebCore::PrintContext
86 void outputLinkedDestinations(GraphicsContext&, Node*, const IntRect& pageRect);
H A DChrome.cpp119 FloatRect Chrome::pageRect() const function in class:WebCore::Chrome
121 return m_client->pageRect();
H A DPrintContext.cpp148 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
150 pageRect = pageRect.transposedRect();
151 m_pageRects.append(pageRect);
155 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
157 pageRect = pageRect.transposedRect();
158 m_pageRects.append(pageRect);
196 IntRect pageRect = m_pageRects[pageNumber]; local
197 float scale = width / pageRect
288 outputLinkedDestinations(GraphicsContext& graphicsContext, Node* node, const IntRect& pageRect) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DChromeClientImpl.cpp178 FloatRect ChromeClientImpl::pageRect() function in class:WebKit::ChromeClientImpl
H A DWebFrameImpl.cpp323 IntRect pageRect = m_pageRects[pageNumber]; local
324 return m_printedPageWidth / pageRect.width();
334 IntRect pageRect = m_pageRects[pageNumber]; local
335 float scale = m_printedPageWidth / pageRect.width();
341 context.translate(static_cast<float>(-pageRect.x()), static_cast<float>(-pageRect.y()));
342 context.clip(pageRect);
343 frame()->view()->paintContents(&context, pageRect);
345 outputLinkedDestinations(context, frame()->document(), pageRect);

Completed in 136 milliseconds