Searched refs:Task (Results 1 - 25 of 308) sorted by relevance

1234567891011>>

/external/chromium/base/
H A Dtask.cc7 Task::Task() { function in class:Task
10 Task::~Task() {
H A Dtask_queue.h15 // the Run method. A task queue is itself a Task so that it can be placed in a
17 class BASE_API TaskQueue : public Task {
27 void Push(Task* task);
41 std::deque<Task*> queue_;
H A Dmessage_loop_proxy_impl.h26 Task* task);
28 Task* task, int64 delay_ms);
30 Task* task);
33 Task* task,
48 Task* task, int64 delay_ms, bool nestable);
H A Dtask_queue.cc18 void TaskQueue::Push(Task* task) {
39 std::deque<Task*> ready;
43 std::deque<Task*>::const_iterator task;
/external/webkit/Source/WebCore/platform/graphics/chromium/cc/
H A DCCMainThread.h32 // Task wrapper around WTF::callOnMainThreadThread
35 class Task { class in class:WebCore::CCMainThread
36 WTF_MAKE_NONCOPYABLE(Task);
38 virtual ~Task() { }
42 Task(void* instance) : m_instance(instance) { } function in class:WebCore::CCMainThread::Task
46 static void postTask(PassOwnPtr<Task>); // Executes the task on main thread asynchronously.
H A DCCMainThread.cpp36 Task* task = static_cast<Task*>(userdata);
41 void CCMainThread::postTask(PassOwnPtr<Task> task)
H A DCCThread.h46 class Task { class in class:WebCore::CCThread
47 WTF_MAKE_NONCOPYABLE(Task);
49 virtual ~Task() { }
53 Task(void* instance) : m_instance(instance) { } function in class:WebCore::CCThread::Task
57 void postTask(PassOwnPtr<Task>); // Executes the task on context's thread asynchronously.
68 MessageQueue<Task> m_queue;
/external/chromium/base/threading/
H A Dworker_pool.h12 class Task;
31 Task* task, bool task_is_slow);
H A Dworker_pool_win.cc15 Task* task = static_cast<Task*>(param);
24 Task* task, bool task_is_slow) {
H A Dworker_pool_posix.h38 class Task;
59 void PostTask(Task* task);
63 Task* WaitForTask();
78 std::queue<Task*> tasks_;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dtaskrunner.h38 class Task;
58 void StartTask(Task *task);
62 void UpdateTaskTimeout(Task *task, int64 previous_task_timeout_time);
65 bool is_ok_to_delete(Task* task) {
104 std::vector<Task *> tasks_;
105 Task *next_timeout_task_;
109 Task* deleting_task_;
112 void RecalcNextTimeout(Task *exclude_task);
H A Dtaskparent.h38 class Task;
43 TaskParent(Task *derived_instance, TaskParent *parent);
63 bool IsChildTask(Task *task);
67 void OnStopped(Task *task);
75 void OnChildStopped(Task *child);
76 void AddChild(Task *child);
81 typedef std::set<Task *> ChildSet;
H A Dtask.cc34 int32 Task::unique_id_seed_ = 0;
36 Task::Task(TaskParent *parent) function in class:talk_base::Task
54 Task::~Task() {
68 int64 Task::CurrentTime() {
72 int64 Task::ElapsedTime() {
76 void Task::Start() {
80 // finishes quickly and deletes the Task object, setting start_time_
86 void Task
[all...]
H A Dtaskparent.cc37 TaskParent::TaskParent(Task* derived_instance, TaskParent *parent)
59 void TaskParent::AddChild(Task *child) {
64 bool TaskParent::IsChildTask(Task *task) {
101 void TaskParent::OnStopped(Task *task) {
106 void TaskParent::OnChildStopped(Task *child) {
/external/chromium/chrome/browser/automation/
H A Dui_controls_internal.h15 class ClickTask : public Task {
17 // A |followup| Task can be specified to notify the caller when the mouse
19 ClickTask(MouseButton button, int state, Task* followup);
26 Task* followup_;
H A Dui_controls.h25 class Task;
29 // Many of the functions in this class include a variant that takes a Task.
30 // The version that takes a Task waits until the generated event is processed.
31 // Once the generated event is processed the Task is Run (and deleted). Note
33 // type (key down, mouse click, etc.) will trigger the Task to be run. Hence
60 Task* task);
64 bool SendMouseMoveNotifyWhenDone(long x, long y, Task* task);
82 bool SendMouseEventsNotifyWhenDone(MouseButton type, int state, Task* task);
98 Task* task);
/external/webkit/Source/WebCore/workers/
H A DWorkerRunLoop.h61 void postTask(PassOwnPtr<ScriptExecutionContext::Task>);
62 void postTaskForMode(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode);
68 class Task { class in class:WebCore::WorkerRunLoop
69 WTF_MAKE_NONCOPYABLE(Task); WTF_MAKE_FAST_ALLOCATED;
71 static PassOwnPtr<Task> create(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode);
72 ~Task() { }
77 Task(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode);
79 OwnPtr<ScriptExecutionContext::Task> m_tas
[all...]
H A DWorkerLoaderProxy.h52 virtual void postTaskToLoader(PassOwnPtr<ScriptExecutionContext::Task>) = 0;
56 virtual void postTaskForModeToWorkerContext(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode) = 0;
H A DWorkerRunLoop.cpp80 bool operator()(WorkerRunLoop::Task* task) const
152 double absoluteTime = (predicate.isDefaultMode() && m_sharedTimer->isActive()) ? m_sharedTimer->fireTime() : MessageQueue<Task>::infiniteTime();
154 OwnPtr<WorkerRunLoop::Task> task = m_messageQueue.waitForMessageFilteredWithTimeout(result, predicate, absoluteTime);
180 void WorkerRunLoop::postTask(PassOwnPtr<ScriptExecutionContext::Task> task)
185 void WorkerRunLoop::postTaskForMode(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode)
187 m_messageQueue.append(Task::create(task, mode.crossThreadString()));
190 PassOwnPtr<WorkerRunLoop::Task> WorkerRunLoop::Task::create(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode)
192 return new Task(tas
202 WorkerRunLoop::Task::Task(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode) function in class:WebCore::WorkerRunLoop::Task
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DFileThread.h57 class Task { class in class:WebCore::FileThread
58 WTF_MAKE_NONCOPYABLE(Task);
60 virtual ~Task() { }
64 Task(void* instance) : m_instance(instance) { } function in class:WebCore::FileThread::Task
68 void postTask(PassOwnPtr<Task> task);
80 MessageQueue<Task> m_queue;
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DStringValue.java11 import org.apache.tools.ant.Task;
47 protected StringValue (final Task task)
55 protected final Task m_task;
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dvoicemailjidrequester.h73 class Task;
76 public talk_base::Task {
78 VoicemailJidRequester(talk_base::Task* parent, const Jid& their_jid, const Jid& my_jid);
113 talk_base::Task* parent_;
/external/chromium/chrome/browser/chromeos/
H A Duser_cros_settings_provider.h17 class Task;
37 bool RequestTrustedAllowGuest(Task* callback);
38 bool RequestTrustedAllowNewUser(Task* callback);
39 bool RequestTrustedDataRoamingEnabled(Task* callback);
40 bool RequestTrustedShowUsersOnSignin(Task* callback);
41 bool RequestTrustedOwner(Task* callback);
/external/chromium/chrome/browser/metrics/
H A Dhistogram_synchronizer.h19 class Task;
83 MessageLoop* callback_thread, Task* callback_task, int wait_time);
109 Task* callback_task);
119 void InternalPostTask(MessageLoop* thread, Task* task,
132 Task* callback_task_;
/external/chromium/chrome/browser/sync/notifier/
H A Dcache_invalidation_packet_handler.h26 class Task;
38 base::WeakPtr<talk_base::Task> base_task,
59 base::WeakPtr<talk_base::Task> base_task_;

Completed in 4174 milliseconds

1234567891011>>