Home
last modified time | relevance | path

Searched refs:workQueue (Results 1 – 7 of 7) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
DRopeImpl.cpp31 void RopeImpl::derefFibersNonRecursive(Vector<RopeImpl*, 32>& workQueue) in derefFibersNonRecursive() argument
39 workQueue.append(nextRope); in derefFibersNonRecursive()
49 Vector<RopeImpl*, 32> workQueue; in destructNonRecursive() local
51 derefFibersNonRecursive(workQueue); in destructNonRecursive()
54 while (!workQueue.isEmpty()) { in destructNonRecursive()
55 RopeImpl* rope = workQueue.last(); in destructNonRecursive()
56 workQueue.removeLast(); in destructNonRecursive()
57 rope->derefFibersNonRecursive(workQueue); in destructNonRecursive()
DJSString.cpp70 Vector<RopeImpl::Fiber, 32> workQueue; in resolveRope() local
73 workQueue.append(m_other.m_fibers[i]); in resolveRope()
82 workQueue.append(rope->fibers()[i]); in resolveRope()
91 if (workQueue.isEmpty()) { in resolveRope()
105 currentFiber = workQueue.last(); in resolveRope()
106 workQueue.removeLast(); in resolveRope()
DRopeImpl.h87 void derefFibersNonRecursive(Vector<RopeImpl*, 32>& workQueue);
/external/webkit/Source/WebKit2/Platform/qt/
DWorkQueueQt.cpp40 WorkItemQt(WorkQueue* workQueue, WorkItem* workItem) in WorkItemQt() argument
41 : m_queue(workQueue) in WorkItemQt()
48 WorkItemQt(WorkQueue* workQueue, QObject* source, const char* signal, WorkItem* workItem) in WorkItemQt() argument
49 : m_queue(workQueue) in WorkItemQt()
/external/webkit/Source/WebKit2/Shared/
DChildProcess.cpp91 void ChildProcess::didCloseOnConnectionWorkQueue(WorkQueue& workQueue, CoreIPC::Connection*) in didCloseOnConnectionWorkQueue() argument
97 workQueue.scheduleWorkAfterDelay(WorkItem::create(watchdogCallback), watchdogDelay); in didCloseOnConnectionWorkQueue()
/external/webkit/Source/WebKit2/Platform/gtk/
DWorkQueueGtk.cpp40 EventSource(PassOwnPtr<WorkItem> workItem, WorkQueue* workQueue, GCancellable* cancellable) in EventSource() argument
42 , m_workQueue(workQueue) in EventSource()
130 void* WorkQueue::startWorkQueueThread(WorkQueue* workQueue) in startWorkQueueThread() argument
132 workQueue->workQueueThreadBody(); in startWorkQueueThread()
/external/webkit/Tools/DumpRenderTree/mac/
DDumpRenderTree.mm111 // - There is no work queued up (see workQueue var, below)