HomeSort by relevance Sort by last modified time
    Searched refs:printRect (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/WebCore/page/win/
FrameWin.cpp 39 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight)
43 printContext.computePageRects(printRect, headerHeight, footerHeight, userScaleFactor, pageHeight);
FrameWin.h 40 void computePageRectsForFrame(Frame*, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& outPages, int& outPageHeight);
  /external/webkit/Source/WebCore/page/wince/
FrameWinCE.cpp 55 void computePageRectsForFrame(Frame* frame, const IntRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, Vector<IntRect>& pages, int& outPageHeight)
77 float ratio = (float)printRect.height() / (float)printRect.width();
  /external/webkit/Source/WebCore/page/
PrintContext.h 46 // FIXME: The printRect argument is only used to determine page aspect ratio, it would be better to pass a FloatSize with page dimensions instead.
47 void computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight, bool allowHorizontalTiling = false);
PrintContext.cpp 58 void PrintContext::computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight, bool allowHorizontalTiling)
78 float ratio = printRect.height() / printRect.width();
82 float ratio = printRect.width() / printRect.height();
  /external/webkit/Source/WebCore/rendering/
RenderLineBoxList.cpp 220 bool usePrintRect = !v->printRect().isEmpty();
245 if (bottomForPaginationCheck - topForPaginationCheck <= v->printRect().height()) {
246 if (ty + bottomForPaginationCheck > v->printRect().maxY()) {
250 if (ty + bottomForPaginationCheck > v->printRect().maxY()) {
RenderView.h 160 const IntRect& printRect() const { return m_legacyPrinting.m_printRect; }
RenderBlock.cpp     [all...]
  /external/webkit/Source/WebKit/win/
WebFrame.cpp     [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebframe.cpp 757 FloatRect printRect = FloatRect(0, 0, width, height);
765 printContext->computePageRects(printRect, headerHeight, footerHeight, 1.0, pageHeight);
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 346 virtual void computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight)
348 return PrintContext::computePageRects(printRect, headerHeight, footerHeight, userScaleFactor, outPageHeight);
391 virtual void computePageRects(const FloatRect& printRect, float headerHeight, float footerHeight, float userScaleFactor, float& outPageHeight)
393 m_pageCount = m_plugin->printBegin(IntRect(printRect), m_printerDPI);
    [all...]

Completed in 142 milliseconds