Searched refs:userScaleFactor (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);
H A DFrameWin.h40 void computePageRectsForFrame(Frame*, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight);
/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
72 if (userScaleFactor <= 0) {
73 LOG_ERROR("userScaleFactor has bad value %.2f", userScaleFactor);
89 float currPageHeight = pageHeight / userScaleFactor;
92 float currPageWidth = pageWidth / userScaleFactor;
/external/webkit/Source/WebCore/page/
H A DPrintContext.h47 void computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight, bool allowHorizontalTiling = false);
H A DPrintContext.cpp58 void PrintContext::computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight, bool allowHorizontalTiling) argument
66 if (userScaleFactor <= 0) {
67 LOG_ERROR("userScaleFactor has bad value %.2f", userScaleFactor);
95 computePageRectsWithPageSizeInternal(FloatSize(pageWidth / userScaleFactor, pageHeight / userScaleFactor), allowHorizontalTiling);
/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
/external/webkit/Source/WebKit/mac/WebView/
H A DWebHTMLView.mm3997 float userScaleFactor = [printOperation _web_pageSetupScaleFactor];
4000 return userScaleFactor * max(maxShrinkToFitScaleFactor, shrinkToFitScaleFactor);
4077 float userScaleFactor = [printOperation _web_pageSetupScaleFactor];
4082 NSArray *newPageRects = [frame _computePageRectsWithPrintScaleFactor:userScaleFactor pageSize:NSMakeSize(fullPageWidth, fullPageHeight)];

Completed in 773 milliseconds