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

/external/webkit/Source/WebCore/page/
H A DPrintContext.h54 const IntRect& pageRect(size_t pageNumber) const { return m_pageRects[pageNumber]; } function in class:WebCore::PrintContext
H A DPrintContext.cpp158 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
160 pageRect = pageRect.transposedRect();
161 m_pageRects.append(pageRect);
165 IntRect pageRect(pageLogicalLeft, pageLogicalTop, pageLogicalWidth, pageLogicalHeight);
167 pageRect = pageRect.transposedRect();
168 m_pageRects.append(pageRect);
206 IntRect pageRect = m_pageRects[pageNumber]; local
207 float scale = width / pageRect
[all...]
H A DChrome.cpp138 FloatRect Chrome::pageRect() const function in class:WebCore::Chrome
140 return m_client->pageRect();
/external/webkit/Source/WebKit/haiku/WebCoreSupport/
H A DChromeClientHaiku.cpp74 FloatRect ChromeClientHaiku::pageRect() function in class:WebCore::ChromeClientHaiku
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DChromeClientWinCE.cpp67 FloatRect ChromeClientWinCE::pageRect() function in class:WebKit::ChromeClientWinCE
/external/webkit/Source/WebKit/wx/WebKitSupport/
H A DChromeClientWx.cpp103 FloatRect ChromeClientWx::pageRect() function in class:WebCore::ChromeClientWx
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DChromeClientAndroid.cpp145 FloatRect ChromeClientAndroid::pageRect() { notImplemented(); return FloatRect(); } function in class:android::ChromeClientAndroid
/external/webkit/Source/WebKit/chromium/src/
H A DChromeClientImpl.cpp196 FloatRect ChromeClientImpl::pageRect() function in class:WebKit::ChromeClientImpl
H A DWebFrameImpl.cpp320 IntRect pageRect = m_pageRects[pageNumber]; local
321 return m_printedPageWidth / pageRect.width();
331 IntRect pageRect = m_pageRects[pageNumber]; local
332 float scale = m_printedPageWidth / pageRect.width();
338 ctx.translate(static_cast<float>(-pageRect.x()),
339 static_cast<float>(-pageRect.y()));
340 ctx.clip(pageRect);
341 m_frame->view()->paintContents(&ctx, pageRect);
/external/webkit/Source/WebKit/efl/WebCoreSupport/
H A DChromeClientEfl.cpp127 FloatRect ChromeClientEfl::pageRect() function in class:WebCore::ChromeClientEfl
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.cpp126 FloatRect ChromeClient::pageRect() function in class:WebKit::ChromeClient
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DChromeClientQt.cpp132 FloatRect ChromeClientQt::pageRect() function in class:WebCore::ChromeClientQt
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebChromeClient.cpp111 FloatRect WebChromeClient::pageRect() function in class:WebChromeClient
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebChromeClient.cpp112 FloatRect WebChromeClient::pageRect() function in class:WebKit::WebChromeClient
/external/webkit/Source/WebCore/loader/
H A DEmptyClients.h96 virtual FloatRect pageRect() { return FloatRect(); } function in class:WebCore::EmptyChromeClient
/external/webkit/Source/WebKit/win/
H A DWebFrame.cpp2077 IntRect pageRect = printerRect(printDC); local
2080 pageRect.x() + marginRect.x(),
2081 pageRect.y() + marginRect.y(),
2082 pageRect.width() - marginRect.x() - marginRect.maxX(),
2083 pageRect.height() - marginRect.y() - marginRect.maxY());
2117 void WebFrame::drawHeader(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, float headerHeight) argument
2119 int x = pageRect.x();
2121 RECT headerRect = {x, y, x+pageRect.width(), y+static_cast<int>(headerHeight)};
2125 void WebFrame::drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight) argument
2127 int x = pageRect
2137 IntRect pageRect = m_pageRects[page]; local
2171 scaleFactor(HDC printDC, const IntRect& marginRect, const IntRect& pageRect) argument
2193 drawHeader(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, float headerHeight) argument
2204 drawFooter(PlatformGraphicsContext* pctx, IWebUIDelegate* ui, const IntRect& pageRect, UINT page, UINT pageCount, float headerHeight, float footerHeight) argument
2234 const IntRect& pageRect = m_pageRects[page]; local
[all...]

Completed in 1832 milliseconds