/external/webkit/Tools/DumpRenderTree/mac/ |
PixelDumpSupportMac.mm | 272 int numberOfPages = [mainFrame numberOfPages:pageWidthInPixels:pageHeightInPixels]; 276 RefPtr<BitmapContext> bitmapContext = createBitmapContext(pageWidthInPixels, numberOfPages * (pageHeightInPixels + 1) - 1, rowBytes, buffer);
|
LayoutTestControllerMac.mm | 311 int LayoutTestController::numberOfPages(float pageWidthInPixels, float pageHeightInPixels) 313 return [mainFrame numberOfPages:pageWidthInPixels:pageHeightInPixels]; [all...] |
/external/webkit/Source/WebCore/page/ |
PrintContext.h | 76 static int numberOfPages(Frame*, const FloatSize& pageSizeInPixels);
|
PrintContext.cpp | 314 int PrintContext::numberOfPages(Frame* frame, const FloatSize& pageSizeInPixels)
|
/external/webkit/Source/WebKit/mac/Misc/ |
WebCoreStatistics.h | 89 - (int)numberOfPages:(float)pageWidthInPixels:(float)pageHeightInPixels;
|
WebCoreStatistics.mm | 281 - (int)numberOfPages:(float)pageWidthInPixels:(float)pageHeightInPixels 283 return PrintContext::numberOfPages(_private->coreFrame, FloatSize(pageWidthInPixels, pageHeightInPixels));
|
/external/webkit/Source/WebKit/win/Interfaces/ |
IWebFramePrivate.idl | 108 HRESULT numberOfPages([in] float pageWidthInPixels, [in] float pageHeightInPixels, [out, retval] int* pageNumber);
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
InjectedBundle.h | 96 int numberOfPages(WebFrame*, double, double);
|
InjectedBundle.cpp | 148 int InjectedBundle::numberOfPages(WebFrame* frame, double pageWidthInPixels, double pageHeightInPixels) 158 return PrintContext::numberOfPages(coreFrame, FloatSize(pageWidthInPixels, pageHeightInPixels));
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
LayoutTestController.idl | 69 int numberOfPages(in double pageWidthInPixels, in double pageHeightInPixels);
|
/external/webkit/Source/WebKit/qt/WebCoreSupport/ |
DumpRenderTreeSupportQt.h | 130 static int numberOfPages(QWebFrame* frame, float width, float height);
|
DumpRenderTreeSupportQt.cpp | 419 int DumpRenderTreeSupportQt::numberOfPages(QWebFrame* frame, float width, float height) 425 return PrintContext::numberOfPages(coreFrame, FloatSize(width, height)); [all...] |
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/ |
WKBundle.cpp | 158 return toImpl(bundleRef)->numberOfPages(toImpl(frameRef), pageWidthInPixels, pageHeightInPixels);
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/ |
LayoutTestController.h | 118 int numberOfPages(double pageWidthInPixels, double pageHeightInPixels);
|
LayoutTestController.cpp | 329 int LayoutTestController::numberOfPages(double pageWidthInPixels, double pageHeightInPixels)
|
/external/webkit/Source/WebKit/win/ |
WebFrame.h | 172 virtual HRESULT STDMETHODCALLTYPE numberOfPages(
|
/external/webkit/Tools/DumpRenderTree/ |
LayoutTestController.h | 72 int numberOfPages(float pageWidthInPixels, float pageHeightInPixels);
|
/external/webkit/Tools/DumpRenderTree/qt/ |
LayoutTestControllerQt.h | 209 int numberOfPages(float width = maxViewWidth, float height = maxViewHeight);
|
LayoutTestControllerQt.cpp | 680 int LayoutTestController::numberOfPages(float width, float height) 682 return DumpRenderTreeSupportQt::numberOfPages(m_drt->webPage()->mainFrame(), width, height);
|
/external/webkit/Tools/DumpRenderTree/wx/ |
LayoutTestControllerWx.cpp | 471 int LayoutTestController::numberOfPages(float, float)
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
LayoutTestController.cpp | 118 bindMethod("numberOfPages", &LayoutTestController::numberOfPages); [all...] |
/external/chromium/webkit/glue/ |
webkit_glue.cc | 150 int NumberOfPages(WebFrame* web_frame,
|
webkit_glue.h | 81 int NumberOfPages(WebKit::WebFrame* web_frame,
|
/external/webkit/Tools/DumpRenderTree/win/ |
LayoutTestControllerWin.cpp | [all...] |
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
DumpRenderTreeSupportGtk.cpp | 277 return PrintContext::numberOfPages(coreFrame, FloatSize(pageWidth, pageHeight));
|