/external/webkit/WebKitTools/DumpRenderTree/ |
D | WorkQueue.cpp | 41 WorkQueue* WorkQueue::shared() in shared() 43 static WorkQueue* sharedInstance = new WorkQueue; in shared() 47 WorkQueue::WorkQueue() in WorkQueue() function in WorkQueue 52 void WorkQueue::queue(WorkQueueItem* item) in queue() 65 WorkQueueItem* WorkQueue::dequeue() in dequeue() 75 unsigned WorkQueue::count() in count() 80 void WorkQueue::clear() in clear() 91 bool WorkQueue::processWork() in processWork()
|
D | WorkQueue.h | 34 class WorkQueue { 36 static WorkQueue* shared(); 48 WorkQueue();
|
D | LayoutTestController.cpp | 1435 WorkQueue::shared()->queue(new BackItem(howFarBack)); in queueBackNavigation() 1440 WorkQueue::shared()->queue(new ForwardItem(howFarForward)); in queueForwardNavigation() 1445 WorkQueue::shared()->queue(new LoadingScriptItem(script)); in queueLoadingScript() 1450 WorkQueue::shared()->queue(new NonLoadingScriptItem(script)); in queueNonLoadingScript() 1455 WorkQueue::shared()->queue(new ReloadItem); in queueReload()
|
/external/chromium/base/ |
D | condition_variable_unittest.cc | 63 class WorkQueue : public PlatformThread::Delegate { class 65 explicit WorkQueue(int thread_count); 66 ~WorkQueue(); 190 WorkQueue queue(kThreadCount); // Start the threads. in TEST_F() 390 WorkQueue queue(kThreadCount); // Start the threads. in TEST_F() 492 WorkQueue::WorkQueue(int thread_count) in WorkQueue() function in __anonca0a39970111::WorkQueue 518 WorkQueue::~WorkQueue() { in ~WorkQueue() 530 int WorkQueue::GetThreadId() { in GetThreadId() 536 bool WorkQueue::EveryIdWasAllocated() const { in EveryIdWasAllocated() 541 TimeDelta WorkQueue::GetAnAssignment(int thread_id) { in GetAnAssignment() [all …]
|
/external/webkit/WebKitTools/DumpRenderTree/qt/ |
D | LayoutTestControllerQt.cpp | 91 if (WorkQueue::shared()->processWork() && !shouldWaitUntilDone()) { in processWork() 120 …WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of thi… in maybeDump() 121 if (WorkQueue::shared()->count()) in maybeDump() 221 WorkQueue::shared()->queue(new BackItem(howFarBackward, m_drt->webPage())); in queueBackNavigation() 227 WorkQueue::shared()->queue(new ForwardItem(howFarForward, m_drt->webPage())); in queueForwardNavigation() 235 WorkQueue::shared()->queue(new LoadItem(absoluteUrl, target, m_drt->webPage())); in queueLoad() 241 WorkQueue::shared()->queue(new ReloadItem(m_drt->webPage())); in queueReload() 247 WorkQueue::shared()->queue(new LoadingScriptItem(script, m_drt->webPage())); in queueLoadingScript() 253 WorkQueue::shared()->queue(new NonLoadingScriptItem(script, m_drt->webPage())); in queueNonLoadingScript()
|
D | DumpRenderTree.pro | 28 HEADERS = $$BASEDIR/WorkQueue.h \ 37 $$BASEDIR/WorkQueue.cpp \
|
D | DumpRenderTreeQt.cpp | 406 WorkQueue::shared()->clear(); in resetToConsistentStateBeforeTesting() 407 WorkQueue::shared()->setFrozen(false); in resetToConsistentStateBeforeTesting()
|
/external/webkit/WebKitTools/DumpRenderTree/wx/ |
D | LayoutTestControllerWx.cpp | 82 if (m_waitToDump && !WorkQueue::shared()->count()) in notifyDone() 96 WorkQueue::shared()->queue(new LoadItem(url, target)); in queueLoad()
|
D | DumpRenderTreeWx.cpp | 246 WorkQueue::shared()->clear(); in runTest() 247 WorkQueue::shared()->setFrozen(false); in runTest()
|
/external/webkit/WebKitTools/DumpRenderTree/gtk/ |
D | DumpRenderTree.cpp | 474 WorkQueue::shared()->clear(); in runTest() 475 WorkQueue::shared()->setFrozen(false); in runTest() 539 if (WorkQueue::shared()->processWork() && !gLayoutTestController->waitToDump()) in processWork() 582 …WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of thi… in webViewLoadFinished() 586 if (WorkQueue::shared()->count()) in webViewLoadFinished()
|
D | LayoutTestControllerGtk.cpp | 171 if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count()) in notifyDone() 202 WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target)); in queueLoad()
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
D | FrameLoadDelegate.cpp | 199 if (WorkQueue::shared()->processWork() && !::gLayoutTestController->waitToDump()) in processWork() 222 WorkQueue::shared()->setFrozen(true); in locationChangeDone() 227 if (WorkQueue::shared()->count()) { in locationChangeDone()
|
D | LayoutTestControllerWin.cpp | 201 if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count()) in notifyDone() 254 WorkQueue::shared()->queue(new LoadItem(jsAbsoluteURL.get(), target)); in queueLoad()
|
D | DumpRenderTree.cpp | 925 WorkQueue::shared()->clear(); in runTest() 926 WorkQueue::shared()->setFrozen(false); in runTest()
|
/external/webkit/WebKitTools/ |
D | GNUmakefile.am | 55 WebKitTools/DumpRenderTree/WorkQueue.cpp \ 56 WebKitTools/DumpRenderTree/WorkQueue.h \
|
D | ChangeLog | 6549 Renamed WorkQueue to QueueEngine. WorkQueue is not a queue. 6694 Clean up exception handling in WorkQueue. Basically, a bunch of the 7015 - Move status updates out of WorkQueue and into individual queues. 7022 - Add new work_item_log_path callback so that WorkQueue doesn't need to know about patches! 9082 …[Qt] fast/history/back-forward-reset-after-error-handling.html failing due to WorkQueue not being … 9085 Unfreeze WorkQueue after each test execution. 9136 The test is timeouting, because it uses the WorkQueue to load a document in one 10076 WorkQueue is the only place that should know about special exit codes 10079 Move LandPatchesFromBugs.handled_error to WorkQueue.exit_after_handled_error 10144 Unit test WorkQueue [all …]
|
D | ChangeLog-2009-06-16 | 1865 … Bug 24922: change WorkQueue-based navigation tests to not depend on synchronous form submission 1885 * DumpRenderTree/WorkQueue.cpp: 1886 … (WorkQueue::processWork): Added. Shared by the different platform's work queue implementations. 1887 * DumpRenderTree/WorkQueue.h: Ditto. 1894 (processWork): Use the new WorkQueue::processWork function to implement the new rule. 1904 … (-[FrameLoadDelegate processWork:]): Use the new WorkQueue::processWork function to implement 1915 … (LayoutTestController::processWork): Use the new WorkQueue::processWork function to implement 1920 (FrameLoadDelegate::processWork): Use the new WorkQueue::processWork function to implement 4733 * DumpRenderTree/WorkQueue.cpp: 10989 * DumpRenderTree/WorkQueue.cpp: [all …]
|
/external/webkit/WebKitTools/DumpRenderTree/DumpRenderTree.xcodeproj/ |
D | project.pbxproj | 76 …C9D90240C97472E0099A4A3 /* WorkQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BC9D90210C… 77 …BC9D90250C97472E0099A4A3 /* WorkQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BC9D90220C9… 223 …472D0099A4A3 /* WorkQueue.cpp */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.objc… 224 …0C97472E0099A4A3 /* WorkQueue.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType… 329 BC9D90210C97472D0099A4A3 /* WorkQueue.cpp */, 330 BC9D90220C97472E0099A4A3 /* WorkQueue.h */, 538 BC9D90250C97472E0099A4A3 /* WorkQueue.h in Headers */, 704 BC9D90240C97472E0099A4A3 /* WorkQueue.cpp in Sources */,
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
D | FrameLoadDelegate.mm | 44 #import "WorkQueue.h" 120 if (WorkQueue::shared()->processWork() && !gLayoutTestController->waitToDump()) 133 …WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of thi… 135 if (WorkQueue::shared()->count())
|
D | LayoutTestControllerMac.mm | 35 #import "WorkQueue.h" 208 if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count()) 227 WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target));
|
D | DumpRenderTree.mm | 51 #import "WorkQueue.h" 1233 WorkQueue::shared()->clear(); 1234 WorkQueue::shared()->setFrozen(false); 1253 WorkQueue::shared()->clear();
|