Home
last modified time | relevance | path

Searched refs:pageWidth (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/page/
DPrintContext.cpp75 float pageWidth; in computePageRects() local
79 pageWidth = view->docWidth(); in computePageRects()
80 pageHeight = floorf(pageWidth * ratio); in computePageRects()
84 pageWidth = floorf(pageHeight * ratio); in computePageRects()
95 …computePageRectsWithPageSizeInternal(FloatSize(pageWidth / userScaleFactor, pageHeight / userScale… in computePageRects()
113 int pageWidth = pageSizeInPixels.width(); in computePageRectsWithPageSizeInternal() local
119 int pageLogicalHeight = isHorizontal ? pageHeight : pageWidth; in computePageRectsWithPageSizeInternal()
120 int pageLogicalWidth = isHorizontal ? pageWidth : pageHeight; in computePageRectsWithPageSizeInternal()
341 const float pageWidth = pageSizeInPixels.width(); in spoolAllPagesWithBoundaries() local
347 graphicsContext.fillRect(FloatRect(0, 0, pageWidth, totalHeight)); in spoolAllPagesWithBoundaries()
[all …]
/external/webkit/Source/WebCore/page/wince/
DFrameWinCE.cpp79 float pageWidth = (float) root->maxXLayoutOverflow(); in computePageRectsForFrame() local
80 float pageHeight = pageWidth * ratio; in computePageRectsForFrame()
92 float currPageWidth = pageWidth / userScaleFactor; in computePageRectsForFrame()
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DDumpRenderTreeSupportGtk.h70 …static int pageNumberForElementById(WebKitWebFrame*, const char* id, float pageWidth, float pageHe…
71 static int numberOfPagesForFrame(WebKitWebFrame*, float pageWidth, float pageHeight);
DDumpRenderTreeSupportGtk.cpp247 …::pageNumberForElementById(WebKitWebFrame* frame, const char* id, float pageWidth, float pageHeigh… in pageNumberForElementById() argument
258 return PrintContext::pageNumberForElement(coreElement, FloatSize(pageWidth, pageHeight)); in pageNumberForElementById()
269 int DumpRenderTreeSupportGtk::numberOfPagesForFrame(WebKitWebFrame* frame, float pageWidth, float p… in numberOfPagesForFrame() argument
277 return PrintContext::numberOfPages(coreFrame, FloatSize(pageWidth, pageHeight)); in numberOfPagesForFrame()
/external/webkit/Tools/DumpRenderTree/gtk/
DLayoutTestControllerGtk.cpp139 int LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidth, float pageHeigh… in pageNumberForElementById() argument
142 …er = DumpRenderTreeSupportGtk::pageNumberForElementById(mainFrame, idGChar, pageWidth, pageHeight); in pageNumberForElementById()
147 int LayoutTestController::numberOfPages(float pageWidth, float pageHeight) in numberOfPages() argument
149 return DumpRenderTreeSupportGtk::numberOfPagesForFrame(mainFrame, pageWidth, pageHeight); in numberOfPages()
/external/webkit/Source/WebKit/mac/WebView/
DWebHTMLViewPrivate.h132 - (BOOL)_beginPrintModeWithPageWidth:(float)pageWidth height:(float)pageHeight shrinkToFit:(BOOL)sh…
DWebHTMLView.mm2226 - (BOOL)_beginPrintModeWithPageWidth:(float)pageWidth height:(float)pageHeight shrinkToFit:(BOOL)sh…
2235 float minLayoutLogicalWidth = isHorizontal ? pageWidth : pageHeight;
2236 float minLayoutLogicalHeight = isHorizontal ? pageHeight : pageWidth;
3911 // pageWidth != 0 implies we will relayout to a new width
4012 - (void)setPageWidthForPrinting:(float)pageWidth
4015 …[self _setPrinting:YES minimumPageLogicalWidth:pageWidth logicalHeight:0 maximumPageLogicalWidth:p…
/external/webkit/Source/WebKit/gtk/webkit/
Dwebkitwebframe.cpp775 float pageWidth = gtk_print_context_get_width(gtkPrintContext); in draw_page_callback() local
779 corePrintContext->spoolPage(graphicsContext, pageNumber, pageWidth); in draw_page_callback()
/external/webkit/Source/WebKit/mac/
DChangeLog-2006-02-0918974 (-[WebHTMLView _setPrinting:pageWidth:adjustViewSize:]):
21528 (-[WebHTMLView _setPrinting:pageWidth:adjustViewSize:]):
21786 * WebView.subproj/WebHTMLView.m: (-[WebHTMLView _setPrinting:pageWidth:adjustViewSize:]):
21798 (-[WebHTMLView _setPrinting:pageWidth:adjustViewSize:]):
26105 (-[WebHTMLView _setPrinting:pageWidth:]):
26161 (-[WebHTMLView _setPrinting:pageWidth:]):
27102 (-[WebHTMLView _setPrinting:pageWidth:]): Pass page width through to others.
27105 (-[WebHTMLView endDocument]): Pass 0 to new pageWidth: arg.
DChangeLog11758 (-[WebFrame pageNumberForElement:element:pageWidth:]):
/external/webkit/Source/WebCore/
DChangeLog-2005-08-2355039 changed pageWidth parameter into min and max parameters; pass them along to KWQKHTMLPart.