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

1 2 3 4 5 6 7 8 91011>>

  /external/lldb/test/python_api/type/
main.cpp 11 class Task {
14 Task *next;
15 Task(int i, Task *n):
24 Task *task_head = new Task(-1, NULL);
25 Task *task1 = new Task(1, NULL);
26 Task *task2 = new Task(2, NULL)
    [all...]
  /external/lldb/test/python_api/value/linked_list/
main.cpp 11 class Task {
14 Task *next;
15 Task(int i, Task *n):
24 Task *task_head = NULL;
25 Task *task1 = new Task(1, NULL);
26 Task *task2 = new Task(2, NULL);
27 Task *task3 = new Task(3, NULL); // Orphaned
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Task.h 39 class Task : public blink::WebThread::Task {
41 explicit Task(const Closure& closure)
  /external/chromium_org/third_party/WebKit/public/platform/
WebThread.h 38 class Task {
40 virtual ~Task() { }
51 // postTask() and postDelayedTask() take ownership of the passed Task
54 virtual void postTask(Task*) = 0;
55 virtual void postDelayedTask(Task*, long long delayMs) = 0;
62 // 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 BLINK_EXPORT bool postTask(Task*);
  /external/chromium_org/v8/include/
v8-platform.h 13 * A Task represents a unit of work.
15 class Task {
17 virtual ~Task() {}
31 * This enum is used to indicate whether a task is potentially long running,
33 * whether to execute the task on a dedicated thread.
41 * Schedules a task to be invoked on a background thread. |expected_runtime|
42 * indicates that the task will run a long time. The Platform implementation
43 * takes ownership of |task|. There is no guarantee about order of execution
45 * thread the task will be run on.
47 virtual void CallOnBackgroundThread(Task* task
    [all...]
  /external/chromium_org/v8/src/libplatform/
task-queue.h 16 class Task;
25 // Appends a task to the queue. The queue takes ownership of |task|.
26 void Append(Task* task);
28 // Returns the next task to process. Blocks if no task is available. Returns
30 Task* GetNext();
38 std::queue<Task*> task_queue_;
  /external/chromium_org/components/domain_reliability/
dispatcher.h 23 // task a chance to run early (if the minimum delay has already passed); tasks
32 // Schedules |task| to be executed between |min_delay| and |max_delay| from
33 // now. The task will be run at most |max_delay| from now; once |min_delay|
34 // has passed, any call to |RunEligibleTasks| will run the task earlier than
36 void ScheduleTask(const base::Closure& task,
44 struct Task;
46 // Adds |task| to the set of all tasks, but not the set of eligible tasks.
47 void MakeTaskWaiting(Task* task);
49 // Adds |task| to the set of eligible tasks, and also the set of all task
    [all...]
dispatcher.cc 16 struct DomainReliabilityDispatcher::Task {
17 Task(const base::Closure& closure,
21 ~Task();
30 DomainReliabilityDispatcher::Task::Task(const base::Closure& closure,
40 DomainReliabilityDispatcher::Task::~Task() {}
58 Task* task = new Task(closure, time_->CreateTimer(), min_delay, max_delay) local
79 Task* task = *it; local
    [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;
  /external/chromium_org/third_party/skia/dm/
DMTask.h 10 // Subclasses can call fail() to mark this task as failed, or make any number of spawnChild() calls
21 class Task {
26 // Returns the number of parents above this task.
31 Task(Reporter* reporter, TaskRunner* taskRunner);
32 Task(const Task& parent);
33 virtual ~Task();
39 void spawnChildNext(CpuTask* task); // For now we don't allow GPU child tasks.
48 class CpuTask : public Task, public SkRunnable {
51 CpuTask(const Task& parent)
    [all...]
DMTask.cpp 12 Task::Task(Reporter* reporter, TaskRunner* taskRunner)
19 Task::Task(const Task& parent)
26 Task::~Task() {
30 void Task::fail(const char* msg) {
38 void Task::start() {
42 void Task::finish()
    [all...]
  /external/chromium_org/third_party/webrtc/base/
taskrunner.h 21 class Task;
41 void StartTask(Task *task);
45 void UpdateTaskTimeout(Task *task, int64 previous_task_timeout_time);
48 bool is_ok_to_delete(Task* task) {
49 return task == deleting_task_;
61 // Returns the next absolute time when a task times out
87 std::vector<Task *> tasks_
    [all...]
taskparent.h 21 class Task;
26 TaskParent(Task *derived_instance, TaskParent *parent);
36 bool IsChildTask(Task *task);
40 void OnStopped(Task *task);
48 void OnChildStopped(Task *child);
49 void AddChild(Task *child);
54 typedef std::set<Task *> ChildSet;
  /external/skia/dm/
DMTask.h 10 // Subclasses can call fail() to mark this task as failed, or make any number of spawnChild() calls
21 class Task {
26 // Returns the number of parents above this task.
31 Task(Reporter* reporter, TaskRunner* taskRunner);
32 Task(const Task& parent);
33 virtual ~Task();
39 void spawnChildNext(CpuTask* task); // For now we don't allow GPU child tasks.
48 class CpuTask : public Task, public SkRunnable {
51 CpuTask(const Task& parent)
    [all...]
DMTask.cpp 12 Task::Task(Reporter* reporter, TaskRunner* taskRunner)
19 Task::Task(const Task& parent)
26 Task::~Task() {
30 void Task::fail(const char* msg) {
38 void Task::start() {
42 void Task::finish()
    [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 {
  /packages/apps/Camera2/src/com/android/camera/util/
Task.java 22 public interface Task<T> {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskGrouping.java 12 Task.TaskKey mFrontMostTaskKey;
13 ArrayList<Task.TaskKey> mTaskKeys = new ArrayList<Task.TaskKey>();
14 HashMap<Task.TaskKey, Integer> mTaskKeyIndices = new HashMap<Task.TaskKey, Integer>();
21 /** Adds a new task to this group. */
22 void addTask(Task t) {
31 /** Removes a task from this group. */
32 void removeTask(Task t) {
46 /** Returns the key of the next task in the group. *
    [all...]
TaskStack.java 34 * An interface for a task filter to query whether a particular task should show in a stack.
37 /** Returns whether the filter accepts the specified task */
38 public boolean acceptTask(Task t, int index);
45 ArrayList<Task> mTasks = new ArrayList<Task>();
46 ArrayList<Task> mFilteredTasks = new ArrayList<Task>();
47 HashMap<Task.TaskKey, Integer> mTaskIndices = new HashMap<Task.TaskKey, Integer>()
278 Task task = tasks.get(i); local
    [all...]
  /external/chromium_org/chrome/browser/history/android/
bookmark_model_sql_handler.h 34 class Task : public base::RefCountedThreadSafe<Task> {
42 Task();
61 friend class base::RefCountedThreadSafe<Task>;
62 ~Task();
67 DISALLOW_COPY_AND_ASSIGN(Task);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Microtask.h 43 static void enqueueMicrotask(PassOwnPtr<blink::WebThread::Task>);
  /external/chromium_org/ui/views_content_client/
views_content_client.h 49 gfx::NativeView window_context)> Task;
63 // The task to run at the end of BrowserMainParts::PreMainMessageLoopRun().
65 void set_task(const Task& task) { task_ = task; }
66 const Task& task() const { return task_; } function in class:ui::ViewsContentClient
76 Task task_;

Completed in 1019 milliseconds

1 2 3 4 5 6 7 8 91011>>