|   /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/ | 
| 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*);
  | 
| 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().
  | 
|   /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, 54 void BookmarkModelSQLHandler::Task::RemoveBookmark(const GURL& url) { 67 void BookmarkModelSQLHandler::Task::UpdateBookmarkTitle( 82 BookmarkModelSQLHandler::Task::~Task() { 85 BookmarkModel* BookmarkModelSQLHandler::Task::GetBookmarkModel() { 112               &BookmarkModelSQLHandler::Task::AddBookmark     [all...] | 
|   /packages/apps/Camera2/src/com/android/camera/util/ | 
| Task.java  | 22 public interface Task<T> {
  | 
|   /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/chromium_org/third_party/skia/dm/ | 
| 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...] | 
| 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...] | 
|   /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/skia/dm/ | 
| 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...] | 
| 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...] | 
|   /frameworks/base/libs/hwui/thread/ | 
| Task.h  | 35 class Task: public TaskBase { 37     Task(): mFuture(new Future<T>()) { } 38     virtual ~Task() { }
  | 
|   /external/chromium_org/components/domain_reliability/ | 
| 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/content/shell/renderer/test_runner/ | 
| MockWebSpeechRecognizer.h  | 43     // Methods accessed from Task objects: 48     class Task { 50         Task(MockWebSpeechRecognizer* recognizer) : m_recognizer(recognizer) { } 51         virtual ~Task() { } 69     std::deque<Task*> m_taskQueue; 74     // Task for stepping the queue.
  | 
|   /external/chromium_org/third_party/WebKit/Source/bindings/v8/ | 
| ScriptDebugServer.h  | 87     class Task { 89         virtual ~Task() { } 92     static void interruptAndRun(PassOwnPtr<Task>, v8::Isolate*);
  | 
|   /external/chromium_org/cc/test/ | 
| ordered_simple_task_runner_unittest.cc  | 25     base::Closure test_task = base::Bind(&OrderedSimpleTaskRunnerTest::Task, 40   void Task(int task_num) {
  | 
|   /external/chromium_org/chrome/browser/sync_file_system/ | 
| sync_process_runner.h  | 28   typedef base::Callback<void(const SyncStatusCallback&)> Task;
  | 
|   /external/chromium_org/gpu/command_buffer/service/ | 
| async_pixel_transfer_manager_idle.h  | 30   struct Task { 31     Task(uint64 transfer_id, 33          const base::Closure& task); 34     ~Task(); 36     // This is non-zero if pixel transfer task. 41     base::Closure task;  member in struct:gpu::AsyncPixelTransferManagerIdle::Task  52     std::list<Task> tasks;
  | 
| async_pixel_transfer_manager_idle.cc  | 90   shared_state_->tasks.push_back(AsyncPixelTransferManagerIdle::Task( 108   shared_state_->tasks.push_back(AsyncPixelTransferManagerIdle::Task( 124   for (std::list<AsyncPixelTransferManagerIdle::Task>::iterator iter = 131     (*iter).task.Run(); 228 AsyncPixelTransferManagerIdle::Task::Task( 231     const base::Closure& task) 234       task(task) { 237 AsyncPixelTransferManagerIdle::Task::~Task() { 310  const Task& task = shared_state_.tasks.back();  local      [all...] | 
|   /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_;
  | 
|   /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/chrome/browser/sync_file_system/drive_backend/ | 
| sync_engine_initializer.h  | 78   typedef base::Callback<void(const SyncStatusCallback& callback)> Task;
  | 
|   /frameworks/base/services/core/java/com/android/server/wm/ | 
| Task.java  | 24 class Task { 31     Task(AppWindowToken wtoken, TaskStack stack, int userId) {
  |