HomeSort by relevance Sort by last modified time
    Searched full:pageheightinpixels (Results 1 - 20 of 20) sorted by null

  /external/webkit/Source/WebKit/mac/Misc/
WebCoreStatistics.h 88 - (int)pageNumberForElement:(DOMElement*)element:(float)pageWidthInPixels:(float)pageHeightInPixels;
89 - (int)numberOfPages:(float)pageWidthInPixels:(float)pageHeightInPixels;
93 - (void)printToCGContext:(CGContextRef)cgContext:(float)pageWidthInPixels:(float)pageHeightInPixels;
WebCoreStatistics.mm 276 - (int)pageNumberForElement:(DOMElement*)element:(float)pageWidthInPixels:(float)pageHeightInPixels
278 return PrintContext::pageNumberForElement(core(element), FloatSize(pageWidthInPixels, pageHeightInPixels));
281 - (int)numberOfPages:(float)pageWidthInPixels:(float)pageHeightInPixels
283 return PrintContext::numberOfPages(_private->coreFrame, FloatSize(pageWidthInPixels, pageHeightInPixels));
301 - (void)printToCGContext:(CGContextRef)cgContext:(float)pageWidthInPixels:(float)pageHeightInPixels
308 PrintContext::spoolAllPagesWithBoundaries(coreFrame, graphicsContext, FloatSize(pageWidthInPixels, pageHeightInPixels));
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.cpp 148 int InjectedBundle::numberOfPages(WebFrame* frame, double pageWidthInPixels, double pageHeightInPixels)
155 if (!pageHeightInPixels)
156 pageHeightInPixels = coreFrame->view()->height();
158 return PrintContext::numberOfPages(coreFrame, FloatSize(pageWidthInPixels, pageHeightInPixels));
161 int InjectedBundle::pageNumberForElementById(WebFrame* frame, const String& id, double pageWidthInPixels, double pageHeightInPixels)
173 if (!pageHeightInPixels)
174 pageHeightInPixels = coreFrame->view()->height();
176 return PrintContext::pageNumberForElement(element, FloatSize(pageWidthInPixels, pageHeightInPixels));
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundle.cpp 156 int WKBundleNumberOfPages(WKBundleRef bundleRef, WKBundleFrameRef frameRef, double pageWidthInPixels, double pageHeightInPixels)
158 return toImpl(bundleRef)->numberOfPages(toImpl(frameRef), pageWidthInPixels, pageHeightInPixels);
161 int WKBundlePageNumberForElementById(WKBundleRef bundleRef, WKBundleFrameRef frameRef, WKStringRef idRef, double pageWidthInPixels, double pageHeightInPixels)
163 return toImpl(bundleRef)->pageNumberForElementById(toImpl(frameRef), toImpl(idRef)->string(), pageWidthInPixels, pageHeightInPixels);
WKBundlePrivate.h 72 WK_EXPORT int WKBundleNumberOfPages(WKBundleRef bundle, WKBundleFrameRef frameRef, double pageWidthInPixels, double pageHeightInPixels);
73 WK_EXPORT int WKBundlePageNumberForElementById(WKBundleRef bundle, WKBundleFrameRef frameRef, WKStringRef idRef, double pageWidthInPixels, double pageHeightInPixels);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebFramePrivate.idl 106 HRESULT pageNumberForElementById([in] BSTR id, [in] float pageWidthInPixels, [in] float pageHeightInPixels, [out, retval] int* pageNumber);
108 HRESULT numberOfPages([in] float pageWidthInPixels, [in] float pageHeightInPixels, [out, retval] int* pageNumber);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
LayoutTestController.idl 69 int numberOfPages(in double pageWidthInPixels, in double pageHeightInPixels);
70 int pageNumberForElementById(in DOMString id, in double pageWidthInPixels, in double pageHeightInPixels);
  /external/webkit/Tools/DumpRenderTree/mac/
PixelDumpSupportMac.mm 271 int pageHeightInPixels = LayoutTestController::maxViewHeight;
272 int numberOfPages = [mainFrame numberOfPages:pageWidthInPixels:pageHeightInPixels];
276 RefPtr<BitmapContext> bitmapContext = createBitmapContext(pageWidthInPixels, numberOfPages * (pageHeightInPixels + 1) - 1, rowBytes, buffer);
277 [mainFrame printToCGContext:bitmapContext->cgContext():pageWidthInPixels:pageHeightInPixels];
LayoutTestControllerMac.mm 282 int LayoutTestController::pageNumberForElementById(JSStringRef id, float pageWidthInPixels, float pageHeightInPixels)
291 return [mainFrame pageNumberForElement:element:pageWidthInPixels:pageHeightInPixels];
311 int LayoutTestController::numberOfPages(float pageWidthInPixels, float pageHeightInPixels)
313 return [mainFrame numberOfPages:pageWidthInPixels:pageHeightInPixels];
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
LayoutTestController.h 118 int numberOfPages(double pageWidthInPixels, double pageHeightInPixels);
119 int pageNumberForElementById(JSStringRef, double pageWidthInPixels, double pageHeightInPixels);
LayoutTestController.cpp 329 int LayoutTestController::numberOfPages(double pageWidthInPixels, double pageHeightInPixels)
332 return WKBundleNumberOfPages(InjectedBundle::shared().bundle(), mainFrame, pageWidthInPixels, pageHeightInPixels);
335 int LayoutTestController::pageNumberForElementById(JSStringRef id, double pageWidthInPixels, double pageHeightInPixels)
338 return WKBundlePageNumberForElementById(InjectedBundle::shared().bundle(), mainFrame, toWK(id).get(), pageWidthInPixels, pageHeightInPixels);
  /external/webkit/Source/WebKit/win/
WebFrame.h 169 /* [in] */ float pageHeightInPixels,
174 /* [in] */ float pageHeightInPixels,
WebFrame.cpp 895 /* [in] */ float pageHeightInPixels,
910 *result = PrintContext::pageNumberForElement(element, FloatSize(pageWidthInPixels, pageHeightInPixels));
916 /* [in] */ float pageHeightInPixels,
926 *result = PrintContext::numberOfPages(coreFrame, FloatSize(pageWidthInPixels, pageHeightInPixels));
    [all...]
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.h 72 int numberOfPages(float pageWidthInPixels, float pageHeightInPixels);
75 int pageNumberForElementById(JSStringRef id, float pageWidthInPixels, float pageHeightInPixels);
LayoutTestController.cpp     [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
LayoutTestController.cpp     [all...]
  /external/webkit/Tools/DumpRenderTree/win/
LayoutTestControllerWin.cpp     [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.h 202 float pageHeightInPixels) const;
WebFrameImpl.cpp     [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 580 float pageHeightInPixels) const = 0;

Completed in 270 milliseconds