Searched defs:footerHeight (Results 1 - 9 of 9) sorted by path

/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
88 pageHeight -= headerHeight + footerHeight;
/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
82 pageHeight -= (headerHeight + footerHeight);
/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/gtk/webkit/
H A Dwebkitwebframe.cpp763 float footerHeight = 0; local
765 printContext->computePageRects(printRect, headerHeight, footerHeight, 1.0, pageHeight);
/external/webkit/Source/WebKit/win/
H A DWebFrame.cpp2027 void WebFrame::headerAndFooterHeights(float* headerHeight, float* footerHeight) argument
2031 if (footerHeight)
2032 *footerHeight = 0;
2039 if (footerHeight && SUCCEEDED(ui->webViewFooterHeight(d->webView, &height)))
2040 *footerHeight = height;
2075 float headerHeight = 0, footerHeight = 0; local
2076 headerAndFooterHeights(&headerHeight, &footerHeight);
2085 computePageRectsForFrame(coreFrame, adjustedRect, headerHeight, footerHeight, 1.0,m_pageRects, m_pageHeight);
2125 void WebFrame::drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight) argument
2128 int y = max((int)headerHeight+pageRect.height(), m_pageHeight-static_cast<int>(footerHeight));
2133 spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount) argument
2204 drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight) argument
2230 spoolPage(PlatformGraphicsContext* pctx, GraphicsContext* spoolCtx, HDC printDC, IWebUIDelegate* ui, float headerHeight, float footerHeight, UINT page, UINT pageCount) argument
2391 float headerHeight = 0, footerHeight = 0; local
[all...]
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.h220 WKPageFooterHeightCallback footerHeight; member in struct:WKPageUIClient
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp2898 float WebPageProxy::footerHeight(WebFrameProxy* frame) function in class:WebKit::WebPageProxy
2900 return m_uiClient.footerHeight(this, frame);
H A DWebUIClient.cpp314 float WebUIClient::footerHeight(WebPageProxy* page, WebFrameProxy* frame) function in class:WebKit::WebUIClient
316 if (!m_client.footerHeight)
319 return m_client.footerHeight(toAPI(page), toAPI(frame), m_client.clientInfo);

Completed in 156 milliseconds