/external/stlport/test/eh/ |
D | nc_alloc.h | 34 struct TestController { struct 111 extern TestController gTestController; argument 130 inline void TestController::TrackAllocations(bool track) { in TrackAllocations() 134 inline bool TestController::TrackingEnabled() { in TrackingEnabled() 138 inline void TestController::SetFailureCountdown(long count) { in SetFailureCountdown() 143 inline void TestController::CancelFailureCountdown() { in CancelFailureCountdown() 147 inline void TestController::BeginLeakDetection() { in BeginLeakDetection() 154 inline bool TestController::LeakDetectionEnabled() { in LeakDetectionEnabled() 158 inline void TestController::EndLeakDetection() { in EndLeakDetection() 162 inline void TestController::SetCurrentTestCategory(const char* str) { in SetCurrentTestCategory() [all …]
|
D | nc_alloc.cpp | 38 long TestController::possible_failure_count = 0; 39 const char* TestController::current_test = "<unknown>"; 40 const char* TestController::current_test_category = "no category"; 41 const char* TestController::current_container = 0; 42 bool TestController::nc_verbose = true; 43 bool TestController::never_fail = false; 44 bool TestController::track_allocations = false; 45 bool TestController::leak_detection_enabled = false; 46 TestController gTestController; 49 void TestController::maybe_fail(long) { in maybe_fail() [all …]
|
/external/webkit/Tools/WebKitTestRunner/ |
D | TestController.cpp | 50 static TestController* controller; 52 TestController& TestController::shared() in shared() 58 TestController::TestController(int argc, const char* argv[]) in TestController() function in WTR::TestController 76 TestController::~TestController() in ~TestController() 82 …PlatformWebView* view = static_cast<TestController*>(const_cast<void*>(clientInfo))->mainWebView(); in getWindowFrameMainPage() 88 …PlatformWebView* view = static_cast<TestController*>(const_cast<void*>(clientInfo))->mainWebView(); in setWindowFrameMainPage() 117 void TestController::runModal(WKPageRef page, const void* clientInfo) in runModal() 129 WKPageRef TestController::createOtherPage(WKPageRef oldPage, WKDictionaryRef, WKEventModifiers, WKE… in createOtherPage() 183 const char* TestController::libraryPathForTesting() in libraryPathForTesting() 195 void TestController::initialize(int argc, const char* argv[]) in initialize() [all …]
|
D | TestInvocation.cpp | 122 TestController::shared().mainWebView()->resizeTo(w3cSVGWidth, w3cSVGHeight); in sizeWebViewForCurrentTest() 124 TestController::shared().mainWebView()->resizeTo(normalWidth, normalHeight); in sizeWebViewForCurrentTest() 138 …WKContextPostMessageToInjectedBundle(TestController::shared().context(), messageName.get(), dumpPi… in invoke() 140 TestController::shared().runUntil(m_gotInitialResponse, TestController::ShortTimeout); in invoke() 151 WKInspectorShow(WKPageGetInspector(TestController::shared().mainWebView()->page())); in invoke() 153 WKPageLoadURL(TestController::shared().mainWebView()->page(), m_url.get()); in invoke() 155 TestController::shared().runUntil(m_gotFinalMessage, TestController::LongTimeout); in invoke() 161 WKInspectorClose(WKPageGetInspector(TestController::shared().mainWebView()->page())); in invoke() 182 TestController::shared().notifyDone(); in didReceiveMessageFromInjectedBundle() 191 TestController::shared().notifyDone(); in didReceiveMessageFromInjectedBundle() [all …]
|
D | TestController.h | 40 class TestController { 42 static TestController& shared(); 44 TestController(int argc, const char* argv[]); 45 ~TestController();
|
/external/chromium/chrome/browser/printing/ |
D | print_dialog_cloud_uitest.cc | 92 class TestController { class 94 static TestController* GetInstance() { in GetInstance() 95 return Singleton<TestController>::get(); in GetInstance() 122 TestController() in TestController() function in __anon481ca9870111::TestController 132 friend struct DefaultSingletonTraits<TestController>; 157 TestController::GetInstance()->set_result(false); in SetUp() 166 TestController::GetInstance()->set_delegate(NULL); in TearDown() 190 TestController::GetInstance()->set_expected_url(cloud_print_dialog_url); in AddTestHandlers() 191 TestController::GetInstance()->set_delegate(&delegate_); in AddTestHandlers() 218 if (TestController::GetInstance()->use_delegate()) in Factory() [all …]
|
/external/webkit/Tools/WebKitTestRunner/qt/ |
D | TestControllerQt.cpp | 78 void TestController::notifyDone() in notifyDone() 83 void TestController::platformInitialize() in platformInitialize() 87 void TestController::platformRunUntil(bool&, double timeout) in platformRunUntil() 111 void TestController::initializeInjectedBundlePath() in initializeInjectedBundlePath() 122 void TestController::initializeTestPluginDirectory() in initializeTestPluginDirectory() 128 void TestController::platformInitializeContext() in platformInitializeContext() 132 void TestController::runModal(PlatformWebView*) in runModal() 137 const char* TestController::platformLibraryPathForTesting() in platformLibraryPathForTesting()
|
D | main.cpp | 53 m_controller = new WTR::TestController(m_argc, const_cast<const char**>(m_argv)); in launch() 58 WTR::TestController* m_controller;
|
D | WebKitTestRunner.pro | 39 $$BASEDIR/TestController.h \ 47 $$BASEDIR/TestController.cpp \
|
/external/webkit/Tools/WebKitTestRunner/mac/ |
D | TestControllerMac.mm | 27 #import "TestController.h" 35 void TestController::notifyDone() 39 void TestController::platformInitialize() 43 void TestController::initializeInjectedBundlePath() 49 void TestController::initializeTestPluginDirectory() 54 void TestController::platformRunUntil(bool& done, double timeout) 63 void TestController::platformInitializeContext() 67 void TestController::runModal(PlatformWebView* view) 75 const char* TestController::platformLibraryPathForTesting()
|
D | main.mm | 28 #import "TestController.h" 35 WTR::TestController controller(argc, argv);
|
/external/webkit/Tools/WebKitTestRunner/win/ |
D | TestControllerWin.cpp | 101 void TestController::notifyDone() in notifyDone() 105 void TestController::platformInitialize() in platformInitialize() 124 void TestController::initializeInjectedBundlePath() in initializeInjectedBundlePath() 132 void TestController::initializeTestPluginDirectory() in initializeTestPluginDirectory() 173 void TestController::platformRunUntil(bool& done, double timeout) in platformRunUntil() 202 void TestController::platformInitializeContext() in platformInitializeContext() 210 void TestController::runModal(PlatformWebView*) in runModal() 215 const char* TestController::platformLibraryPathForTesting() in platformLibraryPathForTesting()
|
D | main.cpp | 33 WTR::TestController controller(argc, argv); in main()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | TestController.js | 31 WebInspector.TestController = function() class in WebInspector 35 WebInspector.TestController.prototype = { 54 WebInspector.TestController.prototype.notifyDone(callId, result);
|
/external/chromium/chrome/browser/diagnostics/ |
D | diagnostics_main.cc | 263 class TestController : public DiagnosticsModel::Observer { class 265 explicit TestController(TestWriter* writer) in TestController() function in __anon89fda2010111::TestController 321 DISALLOW_COPY_AND_ASSIGN(TestController); 352 TestController controller(&writer); in DiagnosticsMain()
|
/external/webkit/Tools/WebKitTestRunner/WebKitTestRunner.xcodeproj/ |
D | project.pbxproj | 43 …31118F7F19005EA8E2 /* TestController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC79343011… 109 …F19005EA8E2 /* TestController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType … 110 …005EA8E2 /* TestController.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =… 190 BC79342F118F7F19005EA8E2 /* TestController.h */, 191 BC793430118F7F19005EA8E2 /* TestController.cpp */, 450 BC793431118F7F19005EA8E2 /* TestController.cpp in Sources */,
|
/external/webkit/Tools/ |
D | ChangeLog-2011-02-16 | 158 * WebKitTestRunner/TestController.cpp: 159 (WTR::TestController::initialize): 1846 * WebKitTestRunner/TestController.cpp: 1847 (WTR::TestController::createOtherPage): 1848 (WTR::TestController::initialize): 2508 * WebKitTestRunner/TestController.cpp: 2509 (WTR::TestController::resetStateToConsistentValues): 2552 * WebKitTestRunner/TestController.cpp: 2553 (WTR::TestController::initialize): Increase the size 2811 * WebKitTestRunner/TestController.cpp: [all …]
|
D | ChangeLog | 236 * WebKitTestRunner/TestController.cpp: 237 (WTR::TestController::resetStateToConsistentValues): Enable the full screen preference. 585 * WebKitTestRunner/TestController.cpp: 586 (WTR::TestController::createOtherPage): Added empty takeFocus entry. 587 (WTR::TestController::initialize): Added empty takeFocus entry. 1399 * WebKitTestRunner/TestController.cpp: 1400 (WTR::TestController::resetStateToConsistentValues): 1420 * WebKitTestRunner/TestController.cpp: 1421 (WTR::TestController::resetStateToConsistentValues): 1461 * WebKitTestRunner/TestController.cpp: [all …]
|
D | ChangeLog-2009-06-16 | 23737 * DrawTest/TestController.h: 23738 * DrawTest/TestController.m: 23739 (-[TestController awakeFromNib]): 23740 (-[TestController setSelectedTest:]): 23741 (-[TestController openTestViewerForSelection:]): 23742 (-[TestController toggleViewersScaleRule:]): 24205 * DrawTest/TestController.m: 24584 * DrawTest/TestController.m: 24585 (-[TestController imagePathForSVGPath:]): 24786 * DrawTest/TestController.h: Added. [all …]
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-01-29 | 26932 * inspector/front-end/TestController.js: 26933 (WebInspector.TestController.prototype.notifyDone): 36095 * inspector/front-end/TestController.js: 36096 (WebInspector.TestController.prototype.notifyDone): 36097 (WebInspector.TestController.prototype.runAfterPendingDispatches): 40331 Web Inspector: Move runAfterPendingDispatches to TestController for Clarity 40334 * inspector/front-end/TestController.js: 40335 (WebInspector.TestController.prototype.runAfterPendingDispatches): 45548 * inspector/front-end/TestController.js: Added. 45549 (WebInspector.TestController): [all …]
|
D | WebCore.gypi | 6273 'inspector/front-end/TestController.js',
|
D | ChangeLog | 23729 * inspector/front-end/TestController.js: 23730 (WebInspector.TestController.prototype.notifyDone): 62284 * inspector/front-end/TestController.js: 62285 (WebInspector.TestController): 62286 (WebInspector.TestController.prototype.notifyDone): 62287 (WebInspector.TestController.prototype.runAfterPendingDispatches): 62288 (WebInspector.TestController.prototype._evaluateForTestInFrontend):
|
D | ChangeLog-2011-02-16 | 207 * inspector/front-end/TestController.js: 208 (WebInspector.TestController.prototype.notifyDone):
|
/external/webkit/Source/WebKit/chromium/ |
D | ChangeLog-2011-02-16 | 23705 (WebInspector.TestController.prototype.runAfterPendingDispatches): 24083 (WebInspector.TestController.prototype.runAfterPendingDispatches):
|