HomeSort by relevance Sort by last modified time
    Searched refs:isPageBoxVisible (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/Source/WebCore/page/
PrintContext.h 74 static bool isPageBoxVisible(Frame* frame, int pageNumber);
PrintContext.cpp 299 bool PrintContext::isPageBoxVisible(Frame* frame, int pageNumber)
301 return frame->document()->isPageBoxVisible(pageNumber);
  /external/webkit/Source/WebKit/mac/Misc/
WebCoreStatistics.h 91 - (bool)isPageBoxVisible:(int)pageNumber;
WebCoreStatistics.mm 291 - (bool)isPageBoxVisible:(int)pageNumber
293 return PrintContext::isPageBoxVisible(_private->coreFrame, pageNumber);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundle.h 99 bool isPageBoxVisible(WebFrame*, int);
InjectedBundle.cpp 188 bool InjectedBundle::isPageBoxVisible(WebFrame* frame, int pageIndex)
194 return PrintContext::isPageBoxVisible(coreFrame, pageIndex);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/
LayoutTestController.idl 72 boolean isPageBoxVisible(in int pageIndex);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.h 73 static bool isPageBoxVisible(WebKitWebFrame*, int pageNumber);
DumpRenderTreeSupportGtk.cpp 300 * isPageBoxVisible
306 bool DumpRenderTreeSupportGtk::isPageBoxVisible(WebKitWebFrame* frame, int pageNumber)
314 return coreFrame->document()->isPageBoxVisible(pageNumber);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
LayoutTestController.h 121 bool isPageBoxVisible(int pageIndex);
LayoutTestController.cpp 347 bool LayoutTestController::isPageBoxVisible(int pageIndex)
  /external/webkit/Source/WebKit/chromium/public/
WebFrame.h 461 virtual bool isPageBoxVisible(int pageIndex) = 0;
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.h 173 virtual bool isPageBoxVisible(int pageIndex);
WebFrameImpl.cpp     [all...]
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h 184 static bool isPageBoxVisible(QWebFrame* frame, int pageIndex);
DumpRenderTreeSupportQt.cpp 904 bool DumpRenderTreeSupportQt::isPageBoxVisible(QWebFrame* frame, int pageIndex)
907 return coreFrame->document()->isPageBoxVisible(pageIndex);
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundle.cpp 173 return toImpl(bundleRef)->isPageBoxVisible(toImpl(frameRef), pageIndex);
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.h 255 bool isPageBoxVisible(int pageIndex);
LayoutTestControllerQt.cpp 825 bool LayoutTestController::isPageBoxVisible(int pageIndex)
827 return DumpRenderTreeSupportQt::isPageBoxVisible(m_drt->webPage()->mainFrame(), pageIndex);
  /external/webkit/Tools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 558 bool LayoutTestController::isPageBoxVisible(int pageNumber) const
  /external/webkit/Tools/DumpRenderTree/
LayoutTestController.h 78 bool isPageBoxVisible(int pageNumber) const;
  /external/webkit/Tools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp 158 bool LayoutTestController::isPageBoxVisible(int pageNumber) const
160 return DumpRenderTreeSupportGtk::isPageBoxVisible(mainFrame, pageNumber);
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
LayoutTestControllerMac.mm 300 bool LayoutTestController::isPageBoxVisible(int pageNumber) const
302 return [mainFrame isPageBoxVisible:pageNumber];
    [all...]
  /external/webkit/Source/WebCore/dom/
Document.h 533 bool isPageBoxVisible(int pageIndex);
    [all...]
  /external/webkit/Tools/DumpRenderTree/win/
LayoutTestControllerWin.cpp     [all...]

Completed in 255 milliseconds

1 2