HomeSort by relevance Sort by last modified time
    Searched refs:LayoutTestController (Results 1 - 21 of 21) sorted by null

  /external/webkit/WebKitTools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 30 #include "LayoutTestController.h"
40 LayoutTestController::~LayoutTestController()
45 void LayoutTestController::addDisallowedURL(JSStringRef url)
50 void LayoutTestController::clearBackForwardList()
54 JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name)
60 JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name)
66 void LayoutTestController::dispatchPendingLoadRequests()
71 void LayoutTestController::display()
75 void LayoutTestController::keepWebHistory(
    [all...]
DumpRenderTreeWx.cpp 32 #include "LayoutTestController.h"
61 LayoutTestController* gLayoutTestController = 0;
241 gLayoutTestController = new LayoutTestController(pathOrURL, expectedPixelHash);
  /external/webkit/WebKitTools/DumpRenderTree/mac/
PolicyDelegate.h 31 class LayoutTestController;
35 LayoutTestController* controllerToNotifyDone;
39 - (void)setControllerToNotifyDone:(LayoutTestController*)controller;
LayoutTestControllerMac.mm 31 #import "LayoutTestController.h"
100 LayoutTestController::~LayoutTestController()
104 void LayoutTestController::addDisallowedURL(JSStringRef url)
118 void LayoutTestController::clearAllDatabases()
123 void LayoutTestController::clearBackForwardList()
138 JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name)
145 JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name)
152 void LayoutTestController::display()
157 JSRetainPtr<JSStringRef> LayoutTestController::counterValueForElementById(JSStringRef id
    [all...]
PolicyDelegate.mm 33 #import "LayoutTestController.h"
108 - (void)setControllerToNotifyDone:(LayoutTestController*)controller
DumpRenderTree.mm 43 #import "LayoutTestController.h"
107 LayoutTestController* gLayoutTestController = 0;
678 // FIXME: This should be moved onto LayoutTestController and made into a HashSet
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/qt/
LayoutTestControllerQt.cpp 55 LayoutTestController::LayoutTestController(WebCore::DumpRenderTree* drt)
62 void LayoutTestController::reset()
86 void LayoutTestController::processWork()
98 void LayoutTestController::maybeDump(bool success)
130 void LayoutTestController::waitUntilDone()
137 QString LayoutTestController::counterValueForElementById(const QString& id)
142 int LayoutTestController::webHistoryItemCount()
152 void LayoutTestController::keepWebHistory()
157 void LayoutTestController::notifyDone(
    [all...]
DumpRenderTreeQt.h 55 class LayoutTestController;
85 LayoutTestController *layoutTestController() const { return m_controller; }
125 LayoutTestController *m_controller;
LayoutTestControllerQt.h 52 class LayoutTestController : public QObject {
58 LayoutTestController(WebCore::DumpRenderTree* drt);
DumpRenderTreeQt.cpp 164 // layoutTestController.overridePreference() or similar.
174 m_drt->layoutTestController()->setXSSAuditorEnabled(false);
240 if (m_drt->layoutTestController()->waitForPolicy()) {
271 m_drt->layoutTestController()->notifyDone();
279 return m_drt->layoutTestController()->shouldHandleErrorPages();
330 m_controller = new LayoutTestController(this);
387 // NOTE: that this has to be done before the layoutTestController is
393 // reset the layoutTestController at this point, so that we under no
526 frame->addToJavaScriptWindowObject(QLatin1String("layoutTestController"), m_controller);
638 static const char *methodNameStringForFailedTest(LayoutTestController *controller
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp 34 #include "LayoutTestController.h"
79 LayoutTestController::~LayoutTestController()
84 void LayoutTestController::addDisallowedURL(JSStringRef url)
89 void LayoutTestController::clearBackForwardList()
106 JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name)
112 JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name)
118 void LayoutTestController::dispatchPendingLoadRequests()
123 void LayoutTestController::display()
128 JSRetainPtr<JSStringRef> LayoutTestController::counterValueForElementById(JSStringRef id
    [all...]
DumpRenderTree.cpp 37 #include "LayoutTestController.h"
80 LayoutTestController* gLayoutTestController = 0;
462 gLayoutTestController = new LayoutTestController(testURL, expectedPixelHash);
651 // i.e., LayoutTestController::waitForPolicyDelegate
  /external/webkit/WebKitTools/DumpRenderTree/
DumpRenderTree.h 53 class LayoutTestController;
58 extern LayoutTestController* gLayoutTestController;
LayoutTestController.cpp 30 #include "LayoutTestController.h"
42 LayoutTestController::LayoutTestController(const std::string& testPathOrURL, const std::string& expectedPixelHash)
86 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
93 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
100 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject));
107 LayoutTestController* controller = static_cast<LayoutTestController*>(JSObjectGetPrivate(thisObject))
    [all...]
LayoutTestController.h 38 class LayoutTestController : public RefCounted<LayoutTestController> {
40 LayoutTestController(const std::string& testPathOrURL, const std::string& expectedPixelHash);
41 ~LayoutTestController();
  /external/webkit/WebKitTools/DumpRenderTree/win/
LayoutTestControllerWin.cpp 30 #include "LayoutTestController.h"
59 LayoutTestController::~LayoutTestController()
82 void LayoutTestController::addDisallowedURL(JSStringRef url)
87 void LayoutTestController::clearBackForwardList()
113 JSStringRef LayoutTestController::copyDecodedHostName(JSStringRef name)
119 JSStringRef LayoutTestController::copyEncodedHostName(JSStringRef name)
125 void LayoutTestController::disableImageLoading()
138 void LayoutTestController::dispatchPendingLoadRequests()
143 void LayoutTestController::display(
    [all...]
PolicyDelegate.h 34 class LayoutTestController;
74 void setControllerToNotifyDone(LayoutTestController* controller) { m_controllerToNotifyDone = controller; }
79 LayoutTestController* m_controllerToNotifyDone;
DumpRenderTree.cpp 35 #include "LayoutTestController.h"
106 LayoutTestController* gLayoutTestController = 0;
889 ::gLayoutTestController = new LayoutTestController(pathOrURL, expectedPixelHash);
    [all...]
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
LayoutTestController.java 19 public interface LayoutTestController {
CallbackProxy.java 27 public class CallbackProxy extends Handler implements EventSender, LayoutTestController {
30 private LayoutTestController mLayoutTestController;
79 LayoutTestController layoutTestController) {
81 mLayoutTestController = layoutTestController;
369 // LayoutTestController Methods
TestShellActivity.java 60 public class TestShellActivity extends Activity implements LayoutTestController {
64 // String constants for use with layoutTestController.overridePreferences
128 mWebView.addJavascriptInterface(mCallbackProxy, "layoutTestController");
330 // LayoutTestController Functions
467 // called the layoutTestController method. Currently, we just use the
706 jsIfaces.put("layoutTestController", mCallbackProxy);

Completed in 176 milliseconds