Searched defs:printRect (Results 1 - 7 of 7) sorted by relevance

/external/webkit/Source/WebCore/page/win/
H A DFrameWin.cpp39 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight) argument
43 printContext.computePageRects(printRect, headerHeight, footerHeight, userScaleFactor, pageHeight);
/external/webkit/Source/WebCore/page/wince/
H A DFrameWinCE.cpp55 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& pages, int& outPageHeight) argument
77 float ratio = (float)printRect.height() / (float)printRect.width();
/external/webkit/Source/WebCore/page/
H A DPrintContext.cpp58 void PrintContext::computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight, bool allowHorizontalTiling) argument
78 float ratio = printRect.height() / printRect.width();
82 float ratio = printRect.width() / printRect.height();
/external/webkit/Source/WebCore/rendering/
H A DRenderView.h160 const IntRect& printRect() const { return m_legacyPrinting.m_printRect; } function in class:WebCore::RenderView
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebframe.cpp757 FloatRect printRect = FloatRect(0, 0, width, height); local
765 printContext->computePageRects(printRect, headerHeight, footerHeight, 1.0, pageHeight);
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp346 virtual void computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight) argument
348 return PrintContext::computePageRects(printRect, headerHeight, footerHeight, userScaleFactor, outPageHeight);
391 virtual void computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight) argument
393 m_pageCount = m_plugin->printBegin(IntRect(printRect), m_printerDPI);
/external/webkit/Source/WebKit/win/
H A DWebFrame.cpp2009 IntRect printRect = printerRect(printDC); local
2011 int paperWidth = printRect.width() * desiredPixelsPerInch / paperHorizontalPixelsPerInch;
2013 int paperHeight = printRect.height() * desiredPixelsPerInch / paperVerticalPixelsPerInch;
2141 IntRect printRect = printerRect(printDC); local
2144 CGFloat(printRect.width()),
2145 CGFloat(printRect.height()));
2173 const IntRect& printRect = printerRect(printDC); local
2176 printRect.x() + marginRect.x(),
2177 printRect.y() + marginRect.y(),
2178 printRect
[all...]

Completed in 131 milliseconds