HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 1 - 25 of 251) 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 WebThread::Task {
41 explicit Task(const Closure& closure)
  /external/chromium_org/third_party/WebKit/public/platform/
WebThread.h 42 class Task {
44 virtual ~Task() { }
55 // postTask() and postDelayedTask() take ownership of the passed Task
58 virtual void postTask(Task*) = 0;
59 virtual void postDelayedTask(Task*, long long delayMs) = 0;
67 // enterRunLoop() processes tasks posted to this WebThread. This call does not return until some task calls exitRunLoop().
WebSchedulerProxy.h 22 // Schedule an input processing task to be run on the Blink main thread.
23 // Takes ownership of |Task|. Can be called from any thread.
24 BLINK_PLATFORM_EXPORT void postInputTask(const WebTraceLocation&, WebThread::Task*);
26 // Schedule a compositor task to run on the Blink main thread. Takes
27 // ownership of |Task|. Can be called from any thread.
28 BLINK_PLATFORM_EXPORT void postCompositorTask(const WebTraceLocation&, WebThread::Task*);
30 // Schedule an IPC task to be run on the Blink main thread.
31 // Takes ownership of |Task|. Can be called from any thread.
32 BLINK_PLATFORM_EXPORT void postIpcTask(const WebTraceLocation&, WebThread::Task*);
WebWorkerRunLoop.h 36 class Task {
38 virtual ~Task() { }
42 // Returns true if the task was posted to a non-terminated loop.
43 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.
43 * Schedules a task to be invoked on a background thread. |expected_runtime|
44 * indicates that the task will run a long time. The Platform implementation
45 * takes ownership of |task|. There is no guarantee about order of execution
47 * thread the task will be run on.
49 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_;
default-platform.h 15 #include "src/libplatform/task-queue.h"
37 Task* task, ExpectedRuntime expected_runtime) OVERRIDE;
39 Task* task) OVERRIDE;
49 std::map<v8::Isolate*, std::queue<Task*> > main_thread_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/skia/dm/
DMTask.h 11 // Subclasses can call fail() to mark this task as failed, or make any number of spawnChild() calls
22 class Task {
27 // Returns the number of parents above this task.
32 Task(Reporter* reporter, TaskRunner* taskRunner);
33 Task(const Task& parent);
34 virtual ~Task();
40 void reallySpawnChild(CpuTask* task); // For now we don't allow GPU child tasks.
49 class CpuTask : public Task, public SkRunnable {
52 CpuTask(const Task& parent)
    [all...]
DMTask.cpp 7 Task::Task(Reporter* reporter, TaskRunner* taskRunner)
14 Task::Task(const Task& parent)
21 Task::~Task() {
25 void Task::fail(const char* msg) {
33 void Task::start() {
37 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;
task.cc 11 #include "webrtc/base/task.h"
17 int32 Task::unique_id_seed_ = 0;
19 Task::Task(TaskParent *parent)
37 Task::~Task() {
38 // Is this task being deleted in the correct manner?
43 // If the task is being deleted without being done, it
45 // This happens if a task is deleted outside of TaskRunner.
51 int64 Task::CurrentTime()
    [all...]
  /external/chromium_org/jingle/glue/
mock_task.cc 9 MockTask::MockTask(TaskParent* parent) : rtc::Task(parent) {}
mock_task.h 5 // A mock of rtc::Task.
11 #include "third_party/webrtc/base/task.h"
15 class MockTask : public rtc::Task {
  /external/chromium_org/third_party/WebKit/Source/platform/scheduler/
TracedTask.h 8 #include "platform/Task.h"
24 typedef Function<void()> Task;
30 TracedTask(const Task&, const TraceLocation&, const char* traceName);
36 Task m_task;
  /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);
bookmark_model_sql_handler.cc 29 BookmarkModelSQLHandler::Task::Task() {
32 void BookmarkModelSQLHandler::Task::AddBookmarkToMobileFolder(
43 void BookmarkModelSQLHandler::Task::AddBookmark(const GURL& url,
55 void BookmarkModelSQLHandler::Task::RemoveBookmark(const GURL& url) {
68 void BookmarkModelSQLHandler::Task::UpdateBookmarkTitle(
83 BookmarkModelSQLHandler::Task::~Task() {
86 BookmarkModel* BookmarkModelSQLHandler::Task::GetBookmarkModel() {
113 &BookmarkModelSQLHandler::Task::AddBookmark
    [all...]
  /external/chromium_org/ui/views_content_client/
views_content_client.h 49 gfx::NativeWindow 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_;
  /external/chromium_org/cc/resources/
task_graph_runner.h 18 class CC_EXPORT Task : public base::RefCountedThreadSafe<Task> {
20 typedef std::vector<scoped_refptr<Task> > Vector;
29 friend class base::RefCountedThreadSafe<Task>;
31 Task();
32 virtual ~Task();
38 // Dependencies are represented as edges in a task graph. Each graph node is
46 explicit TaskComparator(const Task* task) : task_(task) {}
59 Task* task; member in struct:cc::TaskGraph::Node
70 const Task* task; member in struct:cc::TaskGraph::Edge
147 Task* task; member in struct:cc::TaskGraphRunner::PrioritizedTask
    [all...]
  /external/chromium_org/chrome/browser/sync_file_system/local/
syncable_file_operation_runner.h 32 // Represents an operation task (which usually wraps one FileSystemOperation).
33 class Task {
35 Task() {}
36 virtual ~Task() {}
50 static void CancelAndDelete(Task* task);
52 DISALLOW_COPY_AND_ASSIGN(Task);
63 // Runs the given |task| if no sync operation is running on any of
67 // just queues up the |task|.
69 void PostOperationTask(scoped_ptr<Task> task)
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/ant/
StringValue.java 11 import org.apache.tools.ant.Task;
47 protected StringValue (final Task task)
49 if (task == null) throw new IllegalArgumentException ("null input: task");
51 m_task = task;
55 protected final Task m_task;

Completed in 551 milliseconds

1 2 3 4 5 6 7 8 91011