Searched defs:pageHeight (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/page/win/
H A DFrameWin.cpp42 float pageHeight = 0; local
43 printContext.computePageRects(printRect, headerHeight, footerHeight, userScaleFactor, pageHeight);
44 outPageHeight = static_cast<int>(pageHeight);
/external/webkit/Source/WebCore/page/wince/
H A DFrameWinCE.cpp80 float pageHeight = pageWidth * ratio; local
81 outPageHeight = (int) pageHeight; // this is the height of the page adjusted by margins
82 pageHeight -= (headerHeight + footerHeight);
84 if (pageHeight <= 0) {
85 LOG_ERROR("pageHeight has bad value %.2f", pageHeight);
89 float currPageHeight = pageHeight / userScaleFactor;
98 float proposedBottom = min(docHeight, printedPagesHeight + pageHeight);
/external/webkit/Source/WebCore/page/
H A DPrintContext.cpp76 float pageHeight; local
80 pageHeight = floorf(pageWidth * ratio);
83 pageHeight = view->docHeight();
84 pageWidth = floorf(pageHeight * ratio);
87 outPageHeight = pageHeight; // this is the height of the page adjusted by margins
88 pageHeight -= headerHeight + footerHeight;
90 if (pageHeight <= 0) {
91 LOG_ERROR("pageHeight has bad value %.2f", pageHeight);
95 computePageRectsWithPageSizeInternal(FloatSize(pageWidth / userScaleFactor, pageHeight / userScaleFacto
114 int pageHeight = pageSizeInPixels.height(); local
338 float pageHeight; local
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebframe.cpp764 float pageHeight; // height of the page adjusted by margins local
765 printContext->computePageRects(printRect, headerHeight, footerHeight, 1.0, pageHeight);
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.cpp243 * @pageHeight: height of a page
247 int DumpRenderTreeSupportGtk::pageNumberForElementById(WebKitWebFrame* frame, const char* id, float pageWidth, float pageHeight) argument
258 return PrintContext::pageNumberForElement(coreElement, FloatSize(pageWidth, pageHeight));
265 * @pageHeight: height of a page
269 int DumpRenderTreeSupportGtk::numberOfPagesForFrame(WebKitWebFrame* frame, float pageWidth, float pageHeight) argument
277 return PrintContext::numberOfPages(coreFrame, FloatSize(pageWidth, pageHeight));
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe.cpp1442 float pageHeight = 0; local
1452 printContext.computePageRects(pageRect, /* headerHeight */ 0, /* footerHeight */ 0, /* userScaleFactor */ 1.0, pageHeight);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DLayoutTestControllerGtk.cpp139 int LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidth, float pageHeight) argument
142 int pageNumber = DumpRenderTreeSupportGtk::pageNumberForElementById(mainFrame, idGChar, pageWidth, pageHeight);
147 int LayoutTestController::numberOfPages(float pageWidth, float pageHeight) argument
149 return DumpRenderTreeSupportGtk::numberOfPagesForFrame(mainFrame, pageWidth, pageHeight);
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp1397 float pageHeight; local
1399 // browser. pageHeight is actually an output parameter.
1400 m_printContext->computePageRects(rect, 0, 0, 1.0, pageHeight);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface_3.6.1.M20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 178 milliseconds