HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 1 - 25 of 418) 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...]
  /external/skia/dm/
DMTask.cpp 10 Task::Task(Reporter* reporter, TaskRunner* taskRunner)
15 Task::Task(const Task& parent)
23 Task::~Task() {}
25 void Task::run() {
34 void Task::spawnChild(Task* task)
    [all...]
DMTask.h 9 // of usesGpu(). The subclasses can call fail() to mark this task as failed,
12 // Task deletes itself when run.
18 class Task : public SkRunnable {
20 Task(Reporter* reporter, TaskRunner* taskRunner);
21 Task(const Task& parent);
22 virtual ~Task();
31 // Returns the number of parents above this task.
36 void spawnChild(Task* task);
    [all...]
DMTaskRunner.h 7 // TaskRunner runs Tasks on one of two threadpools depending on the Task's usesGpu() method.
13 class Task;
19 void add(Task* task);
  /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_;