/external/webkit/Source/WebCore/page/wince/ |
D | FrameWinCE.cpp | 80 float pageHeight = pageWidth * ratio; in computePageRectsForFrame() local 81 outPageHeight = (int) pageHeight; // this is the height of the page adjusted by margins in computePageRectsForFrame() 82 pageHeight -= (headerHeight + footerHeight); in computePageRectsForFrame() 84 if (pageHeight <= 0) { in computePageRectsForFrame() 85 LOG_ERROR("pageHeight has bad value %.2f", pageHeight); in computePageRectsForFrame() 89 float currPageHeight = pageHeight / userScaleFactor; in computePageRectsForFrame() 98 float proposedBottom = min(docHeight, printedPagesHeight + pageHeight); in computePageRectsForFrame()
|
/external/webkit/Source/WebCore/page/ |
D | PrintContext.cpp | 76 float pageHeight; in computePageRects() local 80 pageHeight = floorf(pageWidth * ratio); in computePageRects() 83 pageHeight = view->docHeight(); in computePageRects() 84 pageWidth = floorf(pageHeight * ratio); in computePageRects() 87 outPageHeight = pageHeight; // this is the height of the page adjusted by margins in computePageRects() 88 pageHeight -= headerHeight + footerHeight; in computePageRects() 90 if (pageHeight <= 0) { in computePageRects() 91 LOG_ERROR("pageHeight has bad value %.2f", pageHeight); in computePageRects() 95 …computePageRectsWithPageSizeInternal(FloatSize(pageWidth / userScaleFactor, pageHeight / userScale… in computePageRects() 114 int pageHeight = pageSizeInPixels.height(); in computePageRectsWithPageSizeInternal() local [all …]
|
/external/webkit/Source/WebCore/page/win/ |
D | FrameWin.cpp | 42 float pageHeight = 0; in computePageRectsForFrame() local 43 … printContext.computePageRects(printRect, headerHeight, footerHeight, userScaleFactor, pageHeight); in computePageRectsForFrame() 44 outPageHeight = static_cast<int>(pageHeight); in computePageRectsForFrame()
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderView.h | 190 …bool pushLayoutState(RenderBox* renderer, const IntSize& offset, int pageHeight = 0, bool pageHeig… 194 …ate = new (renderArena()) LayoutState(m_layoutState, renderer, offset, pageHeight, pageHeightChang… 274 … view, RenderBox* root, IntSize offset, bool disableState = false, int pageHeight = 0, bool pageHe… 281 push(root, offset, pageHeight, pageHeightChanged, colInfo); in m_view() 299 …void push(RenderBox* root, IntSize offset, int pageHeight = 0, bool pageHeightChanged = false, Col… 303 …m_didCreateLayoutState = m_view->pushLayoutState(root, offset, pageHeight, pageHeightChanged, colI…
|
D | RenderFlexibleBox.h | 43 virtual void layoutBlock(bool relayoutChildren, int pageHeight);
|
D | LayoutState.h | 55 …LayoutState(LayoutState*, RenderBox*, const IntSize& offset, int pageHeight, bool pageHeightChange…
|
/external/mdnsresponder/mDNSPosix/ |
D | parselog.py | 170 pageHeight=(len(ipList)+1) * typesize 174 …pageRect = CGRectMake (-leftMargin, -bottomMargin, leftMargin + width, bottomMargin + pageHeight)… 228 c.addLineToPoint((time-minTime)*scale,pageHeight)
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
D | DumpRenderTreeSupportGtk.h | 70 …c int pageNumberForElementById(WebKitWebFrame*, const char* id, float pageWidth, float pageHeight); 71 static int numberOfPagesForFrame(WebKitWebFrame*, float pageWidth, float pageHeight);
|
D | DumpRenderTreeSupportGtk.cpp | 247 …:pageNumberForElementById(WebKitWebFrame* frame, const char* id, float pageWidth, float pageHeight) in pageNumberForElementById() argument 258 return PrintContext::pageNumberForElement(coreElement, FloatSize(pageWidth, pageHeight)); in pageNumberForElementById() 269 …nderTreeSupportGtk::numberOfPagesForFrame(WebKitWebFrame* frame, float pageWidth, float pageHeight) in numberOfPagesForFrame() argument 277 return PrintContext::numberOfPages(coreFrame, FloatSize(pageWidth, pageHeight)); in numberOfPagesForFrame()
|
/external/webkit/Tools/DumpRenderTree/gtk/ |
D | LayoutTestControllerGtk.cpp | 139 …t LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidth, float pageHeight) 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/ |
D | WebHTMLViewPrivate.h | 132 - (BOOL)_beginPrintModeWithPageWidth:(float)pageWidth height:(float)pageHeight shrinkToFit:(BOOL)sh…
|
D | WebHTMLView.mm | 2226 - (BOOL)_beginPrintModeWithPageWidth:(float)pageWidth height:(float)pageHeight shrinkToFit:(BOOL)sh… 2235 float minLayoutLogicalWidth = isHorizontal ? pageWidth : pageHeight; 2236 float minLayoutLogicalHeight = isHorizontal ? pageHeight : pageWidth;
|
/external/webkit/Source/WebKit/gtk/webkit/ |
D | webkitwebframe.cpp | 764 float pageHeight; // height of the page adjusted by margins in begin_print_callback() local 765 printContext->computePageRects(printRect, headerHeight, footerHeight, 1.0, pageHeight); in begin_print_callback()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebframe.cpp | 1442 float pageHeight = 0; in print() local 1452 …Rects(pageRect, /* headerHeight */ 0, /* footerHeight */ 0, /* userScaleFactor */ 1.0, pageHeight); in print()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebFrameImpl.cpp | 1397 float pageHeight; in printBegin() local 1400 m_printContext->computePageRects(rect, 0, 0, 1.0, pageHeight); in printBegin()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 34588 (WebCore::LayoutState::pageHeight): 52261 (WebCore::RenderView::pageHeight): 90461 …queried by RenderBox::calcHeight() during layout. If the given pageHeight is 0, m_pageHeight is set 90464 (WebCore::FrameView::pageHeight): Added this accessor. 90474 … (WebCore::RenderBox::calcHeight): When printing, use FrameView::pageHeight() as the basis for
|
D | ChangeLog-2011-02-16 | 41518 Rename pageHeight variables and members in WebCore to pageLogicalHeight in preparation for
|