OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:workQueue
(Results
1 - 15
of
15
) sorted by null
/external/webkit/Source/JavaScriptCore/runtime/
RopeImpl.cpp
31
void RopeImpl::derefFibersNonRecursive(Vector<RopeImpl*, 32>&
workQueue
)
39
workQueue
.append(nextRope);
49
Vector<RopeImpl*, 32>
workQueue
;
51
derefFibersNonRecursive(
workQueue
);
54
while (!
workQueue
.isEmpty()) {
55
RopeImpl* rope =
workQueue
.last();
56
workQueue
.removeLast();
57
rope->derefFibersNonRecursive(
workQueue
);
JSString.cpp
70
Vector<RopeImpl::Fiber, 32>
workQueue
;
73
workQueue
.append(m_other.m_fibers[i]);
78
// Copy the contents of the current rope into the
workQueue
, with the last item in 'currentFiber'
82
workQueue
.append(rope->fibers()[i]);
91
if (
workQueue
.isEmpty()) {
105
currentFiber =
workQueue
.last();
106
workQueue
.removeLast();
RopeImpl.h
87
void derefFibersNonRecursive(Vector<RopeImpl*, 32>&
workQueue
);
/external/webkit/Source/WebKit2/Shared/
ChildProcess.cpp
91
void ChildProcess::didCloseOnConnectionWorkQueue(
WorkQueue
&
workQueue
, CoreIPC::Connection*)
97
workQueue
.scheduleWorkAfterDelay(WorkItem::create(watchdogCallback), watchdogDelay);
/libcore/luni/src/main/java/java/util/concurrent/
ThreadPoolExecutor.java
397
* threads. We do not require that
workQueue
.poll() returning
398
* null necessarily means that
workQueue
.isEmpty(), so rely
406
private final BlockingQueue<Runnable>
workQueue
;
636
(runStateOf(c) == SHUTDOWN && !
workQueue
.isEmpty()))
811
BlockingQueue<Runnable> q =
workQueue
;
[
all
...]
/external/webkit/Source/WebKit2/Platform/qt/
WorkQueueQt.cpp
28
#include "
WorkQueue
.h"
37
class
WorkQueue
::WorkItemQt : public QObject {
40
WorkItemQt(
WorkQueue
*
workQueue
, WorkItem* workItem)
41
: m_queue(
workQueue
)
48
WorkItemQt(
WorkQueue
*
workQueue
, QObject* source, const char* signal, WorkItem* workItem)
49
: m_queue(
workQueue
)
74
WorkQueue
* m_queue;
80
QSocketNotifier*
WorkQueue
::registerSocketEventHandler(int socketDescriptor, QSocketNotifier::Type type, PassOwnPtr<WorkItem> (…)
[
all
...]
/external/webkit/Source/WebKit2/Platform/gtk/
WorkQueueGtk.cpp
29
#include "
WorkQueue
.h"
37
//
WorkQueue
::EventSource
38
class
WorkQueue
::EventSource {
40
EventSource(PassOwnPtr<WorkItem> workItem,
WorkQueue
*
workQueue
, GCancellable* cancellable)
42
, m_workQueue(
workQueue
)
57
WorkQueue
* queue = eventSource->m_workQueue;
98
WorkQueue
* m_workQueue;
102
//
WorkQueue
103
void
WorkQueue
::platformInitialize(const char* name
[
all
...]
/prebuilt/sdk/10/
android.jar
/prebuilt/sdk/11/
android.jar
/prebuilt/sdk/13/
android.jar
/prebuilt/sdk/15/
android.jar
/prebuilt/sdk/5/
android.jar
/prebuilt/sdk/7/
android.jar
/prebuilt/sdk/8/
android.jar
/prebuilt/sdk/9/
android.jar
Completed in 877 milliseconds