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

  /external/webkit/WebKitTools/DumpRenderTree/
WorkQueue.h 34 class WorkQueue {
36 static WorkQueue* shared();
48 WorkQueue();
WorkQueue.cpp 30 #include "WorkQueue.h"
41 WorkQueue* WorkQueue::shared()
43 static WorkQueue* sharedInstance = new WorkQueue;
47 WorkQueue::WorkQueue()
52 void WorkQueue::queue(WorkQueueItem* item)
65 WorkQueueItem* WorkQueue::dequeue()
75 unsigned WorkQueue::count(
    [all...]
LayoutTestController.cpp 32 #include "WorkQueue.h"
462 // May be able to be made platform independant by using shared WorkQueue
520 // May be able to be made platform independant by using shared WorkQueue
536 // May be able to be made platform independant by using shared WorkQueue
552 // May be able to be made platform independant by using shared WorkQueue
575 // May be able to be made platform independant by using shared WorkQueue
586 // May be able to be made platform independant by using shared WorkQueue
602 // May be able to be made platform independant by using shared WorkQueue
    [all...]
  /external/chromium/base/
condition_variable_unittest.cc 52 // construct an instance of a WorkQueue. The WorkQueue will spin up some
54 // a central repository of the work thread's activity. Finally, the WorkQueue
56 // cases will validate that the WorkQueue has records showing that the desired
61 // The WorkQueue::lock_, as accessed via WorkQueue::lock(), should be used for
63 class WorkQueue : public PlatformThread::Delegate {
65 explicit WorkQueue(int thread_count);
66 ~WorkQueue();
190 WorkQueue queue(kThreadCount); // Start the threads
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/qt/
LayoutTestControllerQt.cpp 33 #include "WorkQueue.h"
91 if (WorkQueue::shared()->processWork() && !shouldWaitUntilDone()) {
120 WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of this test
121 if (WorkQueue::shared()->count())
221 WorkQueue::shared()->queue(new BackItem(howFarBackward, m_drt->webPage()));
227 WorkQueue::shared()->queue(new ForwardItem(howFarForward, m_drt->webPage()));
235 WorkQueue::shared()->queue(new LoadItem(absoluteUrl, target, m_drt->webPage()));
241 WorkQueue::shared()->queue(new ReloadItem(m_drt->webPage()));
247 WorkQueue::shared()->queue(new LoadingScriptItem(script, m_drt->webPage()));
253 WorkQueue::shared()->queue(new NonLoadingScriptItem(script, m_drt->webPage()))
    [all...]
DumpRenderTreeQt.cpp 40 #include "WorkQueue.h"
406 WorkQueue::shared()->clear();
407 WorkQueue::shared()->setFrozen(false);
  /external/webkit/WebKitTools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 33 #include "WorkQueue.h"
82 if (m_waitToDump && !WorkQueue::shared()->count())
96 WorkQueue::shared()->queue(new LoadItem(url, target));
DumpRenderTreeWx.cpp 33 #include "WorkQueue.h"
246 WorkQueue::shared()->clear();
247 WorkQueue::shared()->setFrozen(false);
  /external/webkit/WebKitTools/DumpRenderTree/win/
FrameLoadDelegate.cpp 38 #include "WorkQueue.h"
199 if (WorkQueue::shared()->processWork() && !::gLayoutTestController->waitToDump())
222 WorkQueue::shared()->setFrozen(true);
227 if (WorkQueue::shared()->count()) {
LayoutTestControllerWin.cpp 35 #include "WorkQueue.h"
201 if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count())
254 WorkQueue::shared()->queue(new LoadItem(jsAbsoluteURL.get(), target));
    [all...]
DumpRenderTree.cpp 41 #include "WorkQueue.h"
925 WorkQueue::shared()->clear();
926 WorkQueue::shared()->setFrozen(false);
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/mac/
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 this test
135 if (WorkQueue::shared()->count())
LayoutTestControllerMac.mm 35 #import "WorkQueue.h"
208 if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count())
227 WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target));
DumpRenderTree.mm 51 #import "WorkQueue.h"
99 // - There is no work queued up (see workQueue var, below)
    [all...]
  /external/webkit/WebKitTools/DumpRenderTree/gtk/
DumpRenderTree.cpp 38 #include "WorkQueue.h"
474 WorkQueue::shared()->clear();
475 WorkQueue::shared()->setFrozen(false);
539 if (WorkQueue::shared()->processWork() && !gLayoutTestController->waitToDump())
582 WorkQueue::shared()->setFrozen(true); // first complete load freezes the queue for the rest of this test
586 if (WorkQueue::shared()->count())
LayoutTestControllerGtk.cpp 37 #include "WorkQueue.h"
171 if (m_waitToDump && !topLoadingFrame && !WorkQueue::shared()->count())
202 WorkQueue::shared()->queue(new LoadItem(absoluteURL.get(), target));

Completed in 1950 milliseconds