HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 1 - 25 of 415) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium/base/
task.cc 5 #include "base/task.h"
7 Task::Task() {
10 Task::~Task() {
task_queue.h 12 #include "base/task.h"
15 // the Run method. A task queue is itself a Task so that it can be placed in a
16 // message loop or another task queue.
17 class BASE_API TaskQueue : public Task {
22 // Push the specified task onto the queue. When the queue is run, the tasks
25 // This method takes ownership of |task| and will delete task after it is run
27 void Push(Task* task);
    [all...]
message_loop_proxy_impl.h 26 Task* task);
28 Task* task, int64 delay_ms);
30 Task* task);
33 Task* task,
48 Task* task, int64 delay_ms, bool nestable)
    [all...]
  /external/chromium/chrome/browser/automation/
ui_controls_internal.h 8 #include "base/task.h"
13 // A utility class to send a mouse click event in a task.
15 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_;
ui_controls.h 25 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
37 // SendKeyPressNotifyWhenDone(..., task);
39 // might trigger |task| early.
60 Task* task);
64 bool SendMouseMoveNotifyWhenDone(long x, long y, Task* task)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
Task.h 39 class Task : public WebKit::WebThread::Task {
41 explicit Task(const Closure& closure)
  /external/chromium/base/threading/
worker_pool.h 12 class Task;
26 // This function posts |task| to run on a worker thread. |task_is_slow|
28 // false if |task| could not be posted to a worker thread. Regardless of
29 // return value, ownership of |task| is transferred to the worker pool.
31 Task* task, bool task_is_slow);
worker_pool_win.cc 8 #include "base/task.h"
15 Task* task = static_cast<Task*>(param); local
16 task->Run();
17 delete task;
24 Task* task, bool task_is_slow) {
25 task->SetBirthPlace(from_here);
31 if (!QueueUserWorkItem(WorkItemCallback, task, flags))
    [all...]
worker_pool_posix.h 13 // task queue, it does not own the worker threads. The worker threads ask the
38 class Task;
57 // Adds |task| to the thread pool. PosixDynamicThreadPool assumes ownership
58 // of |task|.
59 void PostTask(Task* task);
63 Task* WaitForTask();
78 std::queue<Task*> tasks_;
  /external/chromium_org/third_party/WebKit/public/platform/
WebThread.h 38 class Task {
40 virtual ~Task() { }
51 virtual void postTask(Task*) = 0;
52 virtual void postDelayedTask(Task*, long long delayMs) = 0;
59 // enterRunLoop() processes tasks posted to this WebThread. This call does not return until some task calls exitRunLoop().
WebWorkerRunLoop.h 38 class Task {
40 virtual ~Task() { }
44 // Returns true if the task was posted to a non-terminated loop.
45 WEBKIT_EXPORT bool postTask(Task*);
  /external/chromium/third_party/libjingle/source/talk/base/
taskrunner.h 38 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) {
66 return task == deleting_task_;
78 // Returns the next absolute time when a task times out
104 std::vector<Task *> tasks_
    [all...]
taskparent.h 38 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;
task.cc 28 #include "talk/base/task.h"
34 int32 Task::unique_id_seed_ = 0;
36 Task::Task(TaskParent *parent)
54 Task::~Task() {
55 // Is this task being deleted in the correct manner?
60 // If the task is being deleted without being done, it
62 // This happens if a task is deleted outside of TaskRunner.
68 int64 Task::CurrentTime()
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
taskrunner.h 38 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) {
66 return task == deleting_task_;
78 // Returns the next absolute time when a task times out
104 std::vector<Task *> tasks_
    [all...]
taskparent.h 38 class Task;
43 TaskParent(Task *derived_instance, TaskParent *parent);
53 bool IsChildTask(Task *task);
57 void OnStopped(Task *task);
65 void OnChildStopped(Task *child);
66 void AddChild(Task *child);
71 typedef std::set<Task *> ChildSet;
task.cc 28 #include "talk/base/task.h"
34 int32 Task::unique_id_seed_ = 0;
36 Task::Task(TaskParent *parent)
54 Task::~Task() {
55 // Is this task being deleted in the correct manner?
60 // If the task is being deleted without being done, it
62 // This happens if a task is deleted outside of TaskRunner.
68 int64 Task::CurrentTime()
    [all...]
  /external/chromium_org/jingle/glue/
mock_task.cc 9 MockTask::MockTask(TaskParent* parent) : talk_base::Task(parent) {}
mock_task.h 5 // A mock of talk_base::Task.
11 #include "third_party/libjingle/source/talk/base/task.h"
15 class MockTask : public talk_base::Task {
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerRunLoop.h 55 // Waits for a single task and returns.
62 bool postTask(PassOwnPtr<ScriptExecutionContext::Task>);
63 void postTaskAndTerminate(PassOwnPtr<ScriptExecutionContext::Task>);
65 bool postTaskForMode(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode);
71 class Task {
72 WTF_MAKE_NONCOPYABLE(Task); WTF_MAKE_FAST_ALLOCATED;
74 static PassOwnPtr<Task> create(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode);
75 ~Task() { }
    [all...]
WorkerLoaderProxy.h 53 // Posts a task to the thread which runs the loading code (normally, the main thread).
54 virtual void postTaskToLoader(PassOwnPtr<ScriptExecutionContext::Task>) = 0;
58 // Returns true if the task was posted successfully.
59 virtual bool postTaskForModeToWorkerGlobalScope(PassOwnPtr<ScriptExecutionContext::Task>, const String& mode) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
WebWorkerBase.cpp 47 ScriptExecutionContext::Task* task = local
48 static_cast<ScriptExecutionContext::Task*>(param);
49 task->performTask(0);
50 delete task;
54 void WebWorkerBase::dispatchTaskToMainThread(PassOwnPtr<ScriptExecutionContext::Task> task)
56 callOnMainThread(invokeTaskMethod, task.leakPtr());
  /external/chromium/chrome/browser/chromeos/
user_cros_settings_provider.h 17 class Task;
36 // In latter case passed task will be posted when ready.
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_org/chrome/browser/history/android/
bookmark_model_sql_handler.h 34 class Task : public base::RefCountedThreadSafe<Task> {
42 Task();
57 friend class base::RefCountedThreadSafe<Task>;
58 ~Task();
63 DISALLOW_COPY_AND_ASSIGN(Task);
  /cts/tests/tests/holo/src/android/holo/cts/
HoloTestUtilitiesActivity.java 47 ArrayAdapter<Task> taskAdapter = new ArrayAdapter<Task>(this,
49 taskAdapter.add(new Task(R.string.task_view_display_info, TASK_VIEW_DISPLAY_INFO));
50 taskAdapter.add(new Task(R.string.task_view_tests, TASK_VIEW_TESTS));
51 taskAdapter.add(new Task(R.string.task_generate_one_bitmap, TASK_GENERATE_ONE_BITMAP));
52 taskAdapter.add(new Task(R.string.task_generate_all_bitmaps, TASK_GENERATE_ALL_BITMAPS));
53 taskAdapter.add(new Task(R.string.task_clear_reference_bitmaps,
55 taskAdapter.add(new Task(R.string.task_clear_failure_bitmaps,
57 taskAdapter.add(new Task(R.string.task_clear_diff_bitmaps,
62 class Task {
85 Task task = getListAdapter().getItem(position); local
    [all...]

Completed in 1266 milliseconds

1 2 3 4 5 6 7 8 91011>>