HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 101 - 125 of 418) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/base/threading/
worker_pool_posix.h 13 // task queue, it does not own the worker threads. The worker threads ask the
41 class Task;
59 // Adds |task| to the thread pool.
61 const Closure& task);
74 // |pending_task->task|.
  /external/chromium_org/net/ssl/
default_server_bound_cert_store.h 72 class Task;
120 // Add |task| to |waiting_tasks_|.
121 void EnqueueTask(scoped_ptr<Task> task);
122 // If already initialized, run |task| immediately. Otherwise add it to
124 void RunOrEnqueueTask(scoped_ptr<Task> task);
145 ScopedVector<Task> waiting_tasks_;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptDebugServer.h 54 void interruptAndRunTask(PassOwnPtr<Task>);
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebSpeechRecognizer.cpp 39 // Task class for calling a client function that does not take any parameters.
41 class ClientCallTask : public MockWebSpeechRecognizer::Task {
44 : MockWebSpeechRecognizer::Task(mock)
55 // Task for delivering a result event.
56 class ResultTask : public MockWebSpeechRecognizer::Task {
59 : MockWebSpeechRecognizer::Task(mock)
83 // Task for delivering a nomatch event.
84 class NoMatchTask : public MockWebSpeechRecognizer::Task {
86 NoMatchTask(MockWebSpeechRecognizer* mock) : MockWebSpeechRecognizer::Task(mock) { }
90 // Task for delivering an error event
234 Task* task = m_object->m_taskQueue.front(); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/plus/
rostertask.h 40 RosterTask(Task * parent) :
  /external/skia/dm/
DMGpuTask.h 18 class GpuTask : public Task {
DMWriteTask.cpp 27 WriteTask::WriteTask(const Task& parent, SkBitmap bitmap) : Task(parent), fBitmap(bitmap) {
70 static SkString path_to_expected_image(const char* root, const Task& task) {
71 SkString filename = task.name();
91 bool WriteTask::Expectations::check(const Task& task, SkBitmap bitmap) const {
92 const SkString path = path_to_expected_image(fRoot, task);
DMPipeTask.cpp 36 PipeTask::PipeTask(const Task& parent,
41 : Task(parent)
DMSerializeTask.cpp 13 SerializeTask::SerializeTask(const Task& parent,
16 : Task(parent)
  /external/chromium/base/
message_loop.h 18 #include "base/task.h"
42 // Events include at a minimum Task instances submitted to PostTask or those
51 // NOTE: MessageLoop has task reentrancy protection. This means that if a
52 // task is being processed, a second task cannot start until the first task is
53 // finished. Reentrancy can happen when processing a task, and an inner
55 // which could implicitly start an inner task. Inner message pumps are created
59 // Sample workaround when inner task processing is needed:
66 // Please be SURE your task is reentrant (nestable) and all global variable
366 Task* task; \/\/ The task to run. member in struct:MessageLoop::PendingTask
    [all...]
  /external/chromium/chrome/browser/
background_mode_manager_linux.cc 13 #include "base/task.h"
26 class DisableLaunchOnStartupTask : public Task {
31 class EnableLaunchOnStartupTask : public Task {
upgrade_detector.cc 14 #include "base/task.h"
65 // This task checks the currently running version of Chrome against the
67 // callback task. Otherwise it just deletes the task.
68 class DetectUpgradeTask : public Task {
70 explicit DetectUpgradeTask(Task* upgrade_detected_task,
80 new DeleteTask<Task>(upgrade_detected_task_));
146 Task* upgrade_detected_task_;
190 Task* callback_task =
  /external/chromium/chrome/browser/chromeos/login/
camera.h 17 class Task;
98 // Task for camera thread that queries camera about the next frame and
100 // next task for itself if capturing still takes place.
134 // Posts task to camera thread.
136 Task* task);
  /external/chromium/chrome/browser/importer/
importer_host.h 23 class Task;
110 // The task is the process of importing settings from other browsers.
111 Task* task_;
113 // The importer used in the task.
134 // Launches the thread that starts the import task, unless bookmark or
  /external/chromium/chrome/browser/safe_browsing/
malware_details_cache.h 51 Task* callback);
79 Task* callback_;
  /external/chromium_org/cc/resources/
raster_worker_pool.h 93 class CC_EXPORT Task {
102 void Insert(const Task& task);
112 Task();
113 ~Task();
115 // Returns true if Task is null (doesn't refer to anything).
118 // Returns the Task into an uninitialized state.
125 explicit Task(internal::WorkerPoolTask* internal);
140 void Append(const RasterTask& task, bool required_for_activation);
155 // Returns true if Task is null (doesn't refer to anything)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/24/1/.cp/ant_tasks/
helpbase-ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
FindMachineTask.java 19 import org.apache.tools.ant.Task;
27 public class FindMachineTask extends Task {
VersionNumberStripper.java 13 import org.apache.tools.ant.Task;
23 public class VersionNumberStripper extends Task {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedGetPropertyTask.java 16 import org.apache.tools.ant.Task;
31 public class RSSFeedGetPropertyTask extends Task {
57 // The method executing the task
  /frameworks/base/libs/hwui/thread/
TaskManager.h 31 class Task;
44 * Returns true if this task manager can run tasks,
61 bool addTask(const sp<Task<T> >& task, const sp<TaskProcessor<T> >& processor) {
62 return addTaskBase(sp<TaskBase>(task), sp<TaskProcessorBase>(processor));
65 bool addTaskBase(const sp<TaskBase>& task, const sp<TaskProcessorBase>& processor);
70 TaskWrapper(const sp<TaskBase>& task, const sp<TaskProcessorBase>& processor):
71 mTask(task), mProcessor(processor) {
82 bool addTask(TaskWrapper task);
94 // task is available in the lis
    [all...]
  /external/chromium/chrome/browser/automation/
ui_controls_win.cc 10 #include "base/task.h"
22 // appropriate event is received the task is notified.
25 InputDispatcher(Task* task, WPARAM message_waiting_for);
32 // an event that notifies the task.
40 // Notifies the task and release this (which should delete it).
43 // The task we notify.
44 scoped_ptr<Task> task_;
110 InputDispatcher::InputDispatcher(Task* task, UINT message_waiting_for
    [all...]
ui_controls_linux.cc 27 EventWaiter(Task* task, GdkEventType type, int count)
28 : task_(task),
59 Task* task_;
147 Task* task) {
156 // This object will delete itself after running |task|.
157 new EventWaiter(task, GDK_KEY_RELEASE, release_count);
172 bool SendMouseMoveNotifyWhenDone(long x, long y, Task* task) {
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
task_unittest.cc 43 #include "talk/base/task.h"
58 // this is a generic timeout task which, when it signals timeout, will
59 // include the unique ID of the task in the signal (we don't use this
61 // an array of the same types of task)
63 class IdTimeoutTask : public Task, public sigslot::has_slots<> {
65 explicit IdTimeoutTask(TaskParent *parent) : Task(parent) {
83 Task::Stop();
111 // simple implementation of a task runner which uses Windows'
150 // no need to delete any tasks; the task runner owns them
162 LOG(LS_INFO) << "Task " << stuck_[i].xlat_ << " created with timeout
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/report/
ReportCfg.java 26 import org.apache.tools.ant.Task;
113 Element (final Task task, final IProperties settings)
115 if (task == null)
116 throw new IllegalArgumentException ("null input: task");
120 m_task = task;
151 protected final Task m_task; // never null
167 Element_HTML (final Task task, final IProperties settings)
169 super (task, settings)
    [all...]

Completed in 1071 milliseconds

1 2 3 45 6 7 8 91011>>