Searched refs:Worker (Results 1 - 25 of 38) sorted by relevance

12

/external/webkit/Source/WebCore/workers/
H A DWorker.cpp32 #include "Worker.h"
53 inline Worker::Worker(ScriptExecutionContext* context) function in class:WebCore::Worker
59 PassRefPtr<Worker> Worker::create(const String& url, ScriptExecutionContext* context, ExceptionCode& ec)
61 RefPtr<Worker> worker = adoptRef(new Worker(context));
78 Worker::~Worker()
81 ASSERT(scriptExecutionContext()); // The context is protected by worker context proxy, so it cannot be destroyed while a Worker exist
[all...]
H A DWorker.h54 class Worker : public AbstractWorker, private WorkerScriptLoaderClient { class in namespace:WebCore
56 static PassRefPtr<Worker> create(const String& url, ScriptExecutionContext*, ExceptionCode&);
57 virtual ~Worker();
59 virtual Worker* toWorker() { return this; }
75 Worker(ScriptExecutionContext*);
H A DWorkerContextProxy.h43 class Worker;
48 static WorkerContextProxy* create(Worker*);
H A DWorkerMessagingProxy.h47 class Worker;
52 WorkerMessagingProxy(Worker*);
93 Worker* workerObject() const { return m_workerObject; }
96 Worker* m_workerObject;
H A DWorker.idl37 ] Worker : AbstractWorker {
H A DWorkerMessagingProxy.cpp44 #include "Worker.h"
93 Worker* workerObject = m_messagingProxy->workerObject();
125 Worker* workerObject = m_messagingProxy->workerObject();
212 WorkerContextProxy* WorkerContextProxy::create(Worker* worker)
218 WorkerMessagingProxy::WorkerMessagingProxy(Worker* workerObject)
299 // Worker.terminate() could be called from JS before the thread was created.
305 m_workerThreadHadPendingActivity = true; // Worker initialization means a pending activity.
337 // in either side any more. However, the Worker object may still exist, and it assumes that the proxy exists, too.
/external/valgrind/unittest/
H A Datomicity_tests.cc70 void Worker() { function in namespace:AtomicityTests_LockedVector
82 MyThreadArray t(Worker, Worker);
129 void Worker() { function in namespace:AtomicityTests_ReaderThenWriterLockTest
138 MyThreadArray t(Worker, Worker, Worker);
H A Dracecheck_unittest.cc397 // Parent: Worker:
399 // 2. Start(Worker) ------------>
401 // 3. Join(Worker) <------------
403 void Worker() { function in namespace:test08
408 MyThread t(Worker);
696 void Worker() { function in namespace:test16
714 MyThreadArray t(Worker, Worker);
730 void Worker() { function in namespace:test17
747 MyThreadArray t(Worker, Worke
1073 void Worker() { function in namespace:test27
1374 void Worker() { function in namespace:test33
1426 void Worker() { function in namespace:test34
1466 void Worker() { function in namespace:test35
1674 void Worker() { function in namespace:NegativeTests_Barrier
1772 void Worker() { function in namespace:test41
2465 void Worker() { function in namespace:test56
3171 void Worker() { function in namespace:NegativeTests_EmptyRep
3346 void Worker() { function in namespace:test72
3419 void Worker() { function in namespace:test73
3573 void Worker() { function in namespace:test76
3600 void Worker() { function in namespace:test77
3627 void Worker() { function in namespace:test78
3752 void Worker() { function in namespace:test80
3778 void Worker() { function in namespace:test81
4008 void Worker() { function in namespace:NegativeTests_BenignRaceInDtor
4212 void Worker() { function in namespace:test89
4804 void Worker() { function in namespace:test103
4832 void Worker() { function in namespace:test104
4870 void Worker() { function in namespace:test105
4933 void Worker() { function in namespace:test108
4961 void Worker(void *a) { function in namespace:test109
5054 void Worker() { function in namespace:test112
5153 void Worker() { function in namespace:test114
5171 void Worker() { function in namespace:test116
5216 void Worker(void *a) { function in namespace:test117
5395 void Worker() { function in namespace:DoubleCheckedLocking2
5527 void Worker() { function in namespace:test124
5552 void Worker() { function in namespace:test126
5595 void Worker() { function in namespace:test128
5670 void Worker() { // Spawn few threads that touch per_thread_global. function in namespace:NegativeTests_PerThreadTest
5701 void Worker() { // Spawn few threads that touch stack. function in namespace:NegativeTests_StackReuseTest
5733 void Worker() { GLOB = 1; } function in namespace:test132
5757 void Worker() { GLOB = 1; } function in namespace:test133
5807 void Worker() { function in namespace:test134
5830 void Worker() { function in namespace:test137
5864 void Worker(int *var) { function in namespace:ThreadPoolFNTests
6055 void Worker() { function in namespace:test144
6086 void Worker() { function in namespace:test145
6299 void Worker() { function in namespace:test154
6607 void Worker(int depth) { function in namespace:StressTests_ThreadTree
6636 void Worker() { function in namespace:StressTests_StartAndJoinManyThreads
6723 void Worker() { function in namespace:NegativeTests_EnableRaceDetectionTest
6766 void Worker() { function in namespace:ManySmallObjectsTest
7063 void Worker(){ function in namespace:test503
7123 void Worker() { function in namespace:test504
7168 void Worker() { function in namespace:test505
7216 void Worker() { function in namespace:test506
7265 void Worker() { function in namespace:test507
7304 void Worker() { function in namespace:test508
7329 void Worker() { function in namespace:test509
7363 void Worker() { function in namespace:test510
7454 void Worker() { function in namespace:test513
7793 void Worker() { function in namespace:BenignRaceTest
[all...]
H A Dposix_tests.cc73 void Worker() { function in namespace:test11
86 MyThreadArray t(Worker, Worker);
265 void Worker() { function in namespace:test110
318 MyThreadArray t(Worker, Worker, Worker);
356 void Worker() { function in namespace:test115
392 MyThreadArray t(Worker, Worker, Worke
[all...]
H A Ddemo_tests.cc76 void Worker() { function in namespace:test302
104 MyThread t1(Worker), t2(Worker);
474 void Worker() { Func19(); } function in namespace:test312
477 MyThreadArray t(Worker, Worker, Worker);
488 // Worker(N) will do 2^N increments of GLOB, each increment in a separate thread
489 void Worker(int depth) { function in namespace:test313
494 pool.Add(NewCallback(Worker, dept
[all...]
H A Dthread_wrappers.h237 MyThread *thread = new MyThread(&ThreadPool::Worker, this);
270 static void *Worker(void *p) { function in class:ThreadPool
/external/clang/test/SemaCXX/
H A Darrow-operator.cpp53 class Worker { class in namespace:arrow_suggest
60 wrapped_ptr<Worker> worker(new Worker);
61 worker.DoSomething(); // expected-error {{no member named 'DoSomething' in 'arrow_suggest::wrapped_ptr<arrow_suggest::Worker>'; did you mean to use '->' instead of '.'?}}
62 worker.DoSamething(); // expected-error {{no member named 'DoSamething' in 'arrow_suggest::wrapped_ptr<arrow_suggest::Worker>'}}
63 worker.Chuck(); // expected-error {{no member named 'Chuck' in 'arrow_suggest::wrapped_ptr<arrow_suggest::Worker>'; did you mean 'Check'?}}
/external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
H A DLeaksParser.js28 this._worker = new Worker("LeaksParserWorker.js");
/external/webkit/Source/WebCore/bindings/js/
H A DJSWorkerCustom.cpp34 #include "Worker.h"
62 RefPtr<Worker> worker = Worker::create(ustringToString(scriptURL), window->document(), ec);
H A DJSEventTarget.cpp73 #include "Worker.h"
144 if (Worker* worker = target->toWorker())
223 CONVERT_TO_EVENT_TARGET(Worker)
/external/chromium/third_party/libjingle/source/talk/base/
H A Dsignalthread.h93 // Context: Worker Thread. Subclass should override to do work.
96 // Context: Worker Thread. Subclass should call periodically to
100 // Context: Worker Thread. Subclass should override when extra work is
120 friend class Worker;
121 class Worker : public Thread { class in class:talk_base::SignalThread
148 Worker worker_;
/external/valgrind/main/drd/tests/
H A Dtsan_unittest.cpp331 void Worker() { function in namespace:test01
336 MyThread t(Worker);
639 // Parent: Worker:
641 // 2. Start(Worker) ------------>
643 // 3. Join(Worker) <------------
645 void Worker() { function in namespace:test08
650 MyThread t(Worker);
745 void Worker() { function in namespace:test11
758 MyThreadArray t(Worker, Worker);
992 void Worker() { function in namespace:test16
1026 void Worker() { function in namespace:test17
1381 void Worker() { function in namespace:test27
1684 void Worker() { function in namespace:test33
1736 void Worker() { function in namespace:test34
1776 void Worker() { function in namespace:test35
1985 void Worker() { function in namespace:test39
2085 void Worker() { function in namespace:test41
2789 void Worker() { function in namespace:test56
3466 void Worker() { function in namespace:test72
3557 void Worker() { function in namespace:test73
3762 void Worker() { function in namespace:test76
3789 void Worker() { function in namespace:test77
3816 void Worker() { function in namespace:test78
3941 void Worker() { function in namespace:test80
3967 void Worker() { function in namespace:test81
4205 void Worker() { function in namespace:test86
4274 void Worker() { function in namespace:test87
4298 void Worker() { function in namespace:test88
4350 void Worker() { function in namespace:test89
4994 void Worker() { function in namespace:test103
5022 void Worker() { function in namespace:test104
5059 void Worker() { function in namespace:test105
5152 void Worker() { function in namespace:test108
5178 void Worker(void *a) { function in namespace:test109
5230 void Worker() { function in namespace:test110
5384 void Worker() { function in namespace:test112
5484 void Worker() { function in namespace:test114
5515 void Worker() { function in namespace:test115
5560 void Worker() { function in namespace:test116
5605 void Worker(void *a) { function in namespace:test117
5941 void Worker() { function in namespace:test124
6026 void Worker() { function in namespace:test126
6069 void Worker() { function in namespace:test128
6144 void Worker() { // Spawn few threads that touch per_thread_global. function in namespace:test130
6175 void Worker() { // Spawn few threads that touch stack. function in namespace:test131
6198 void Worker() { GLOB = 1; } function in namespace:test132
6223 void Worker() { GLOB = 1; } function in namespace:test133
6274 void Worker() { function in namespace:test134
6305 void Worker() { function in namespace:test135
6347 void Worker() { function in namespace:test137
6375 void Worker() { function in namespace:test138
6472 void Worker() { function in namespace:test140
6723 void Worker() { function in namespace:test302
7131 void Worker() { Func19(); } function in namespace:test312
7147 void Worker(long depth) { function in namespace:test313
7293 void Worker() { function in namespace:test501
7397 void Worker(){ function in namespace:test503
7457 void Worker() { function in namespace:test504
7500 void Worker() { function in namespace:test505
7547 void Worker() { function in namespace:test506
7596 void Worker() { function in namespace:test507
7635 void Worker() { function in namespace:test508
7660 void Worker() { function in namespace:test509
7694 void Worker() { function in namespace:test510
7771 void Worker() { function in namespace:test513
[all...]
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WorkerCustom.cpp36 #include "Worker.h"
52 INC_STATS(L"DOM.Worker.Constructor");
76 RefPtr<Worker> obj = Worker::create(toWebCoreString(scriptUrl), context, ec);
92 INC_STATS("DOM.Worker.postMessage");
93 Worker* worker = V8Worker::toNative(args.Holder());
/external/webkit/Source/WebCore/inspector/front-end/
H A DWorkersSidebarPane.js58 var worker = new WebInspector.Worker(id, url, isShared);
97 WebInspector.Worker = function(id, url, shared)
/external/webkit/Source/WebKit/chromium/src/
H A DWebWorkerClientImpl.h56 WebWorkerClientImpl(WebCore::Worker*);
59 static WebCore::WorkerContextProxy* createWorkerContextProxy(WebCore::Worker*);
152 WebCore::Worker* m_worker;
/external/clang/test/FixIt/
H A Dfixit.cpp235 class Worker { class in namespace:arrow_suggest
241 wrapped_ptr<Worker> worker(new Worker);
242 worker.DoSomething(); // expected-error {{no member named 'DoSomething' in 'arrow_suggest::wrapped_ptr<arrow_suggest::Worker>'; did you mean to use '->' instead of '.'?}}
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMEventTarget.cpp49 #include "Worker.h"
115 ConvertTo(Worker)
172 if (WebCore::Worker* worker = value->toWorker())
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DPipedInputStreamTest.java355 static class Worker extends Thread { class in class:PipedInputStreamTest
358 Worker(PipedOutputStream pos) { method in class:PipedInputStreamTest.Worker
376 Thread worker = new Worker(out);
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dworker.py44 class Worker(manager_worker_broker.AbstractWorker, worker_mixin.WorkerMixin): class in inherits:manager_worker_broker.AbstractWorker, worker_mixin.WorkerMixin
/external/webkit/Source/WebCore/dom/
H A DEventTarget.h66 class Worker;
117 virtual Worker* toWorker();

Completed in 473 milliseconds

12