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

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/storage/chromium/
SQLTransactionClientChromium.cpp 42 class NotifyDatabaseChangedTask : public ScriptExecutionContext::Task {
  /external/webkit/Source/WebKit/chromium/src/
WorkerFileSystemCallbacksBridge.h 86 // Methods that create an instance and post an initial request task to the main thread. They must be called on the worker thread.
131 static void runTaskOnMainThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerFileSystemCallbacksBridge>, PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
132 static void runTaskOnWorkerThread(WebCore::ScriptExecutionContext*, PassRefPtr<WorkerFileSystemCallbacksBridge>, PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
134 void dispatchTaskToMainThread(PassOwnPtr<WebCore::ScriptExecutionContext::Task>);
135 void mayPostTaskToWorker(PassOwnPtr<WebCore::ScriptExecutionContext::Task>, const String& mode);
  /external/chromium/chrome/browser/
background_mode_manager_win.cc 10 #include "base/task.h"
22 class DisableLaunchOnStartupTask : public Task {
27 class EnableLaunchOnStartupTask : public Task {
transport_security_persister.cc 32 Task* task = NewRunnableMethod(this, local
34 BrowserThread::PostDelayedTask(BrowserThread::FILE, FROM_HERE, task, 1000);
73 Task* task = save_coalescer_.NewRunnableMethod(
75 MessageLoop::current()->PostDelayedTask(FROM_HERE, task, 1000);
gpu_process_host_ui_shim.h 39 // A task that will forward an IPC message to the UI shim.
40 class RouteToGpuProcessHostUIShimTask : public Task {
jankometer.cc 122 base::Histogram* const process_times_; // Time spent proc. task.
248 virtual void WillProcessTask(const Task* task) {
252 const base::TimeDelta queueing_time = now - task->tracked_birth_time();
256 virtual void DidProcessTask(const Task* task) {
294 virtual void WillProcessTask(const Task* task) {
298 const base::TimeDelta queueing_time = now - task->tracked_birth_time();
302 virtual void DidProcessTask(const Task* task)
    [all...]
  /external/chromium/net/base/
cookie_monster_store_test.h 65 virtual void Flush(Task* completion_task);
132 virtual void Flush(Task* completion_task);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
CvsDiffParser.java 17 import org.apache.tools.ant.Task;
33 public class CvsDiffParser extends Task {
GenerateExcludeListTask.java 22 import org.apache.tools.ant.Task;
24 public class GenerateExcludeListTask extends Task {
FetchValidator.java 14 import org.apache.tools.ant.Task;
25 public class FetchValidator extends Task {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
FileCounter.java 20 import org.apache.tools.ant.Task;
23 * This task will count the number of fils in a given directory
31 public class FileCounter extends Task {
  /external/emma/ant/ant14/com/vladium/emma/ant/
SuppressableTask.java 18 import org.apache.tools.ant.Task;
25 abstract class SuppressableTask extends Task
  /external/webkit/Source/WebCore/workers/
WorkerMessagingProxy.cpp 48 class MessageWorkerContextTask : public ScriptExecutionContext::Task {
76 class MessageWorkerTask : public ScriptExecutionContext::Task {
107 class WorkerExceptionTask : public ScriptExecutionContext::Task {
143 class WorkerContextDestroyedTask : public ScriptExecutionContext::Task {
164 class WorkerTerminateTask : public ScriptExecutionContext::Task {
185 class WorkerThreadActivityReportTask : public ScriptExecutionContext::Task {
261 void WorkerMessagingProxy::postTaskForModeToWorkerContext(PassOwnPtr<ScriptExecutionContext::Task> task, const String& mode)
267 m_workerThread->runLoop().postTaskForMode(task, mode);
270 void WorkerMessagingProxy::postTaskToLoader(PassOwnPtr<ScriptExecutionContext::Task> task
    [all...]
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebUrlLoaderClient.h 82 void maybeCallOnMainThread(Task* task);
128 std::deque<Task*> m_queue;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/76/1/.cp/ant_tasks/
resources-ant.jar 
  /external/chromium/base/
message_loop.cc 174 // Clean up any unprocessed tasks, but take care: deleting a task could
176 // limit on the number of times we will allow a deleted task to generate more
178 // we end up hitting the loop limit, then it is probably due to one task that
225 const tracked_objects::Location& from_here, Task* task) {
226 PostTask_Helper(from_here, task, 0, true);
230 const tracked_objects::Location& from_here, Task* task, int64 delay_ms) {
231 PostTask_Helper(from_here, task, delay_ms, true);
235 const tracked_objects::Location& from_here, Task* task)
451 Task* task = NULL; local
464 Task* task = delayed_work_queue_.top().task; local
    [all...]
message_pump_glib_unittest.cc 57 if (event.task) {
58 event.task->Run();
59 delete event.task;
63 // Adds an event to the queue. When "handled", executes |task|.
65 void AddEvent(int delay_ms, Task* task) {
73 EventInjector::Event event = { future, task };
87 Task* task; member in struct:__anon3668::EventInjector::Event
124 // Does nothing. This function can be called from a task
    [all...]
  /external/chromium/base/threading/
worker_pool_posix_unittest.cc 11 #include "base/task.h"
28 const std::queue<Task*>& tasks() const { return pool_->tasks_; }
51 class IncrementingTask : public Task {
84 class BlockingIncrementingTask : public Task {
154 Task* CreateNewIncrementingTask() {
159 Task* CreateNewBlockingIncrementingTask() {
185 // Add one task and wait for it to be completed.
191 "There should be only one thread allocated for one task.";
197 // Add one task and wait for it to be completed.
259 // Add another non blocking task. There are no threads to reuse
    [all...]
thread_unittest.cc 20 class ToggleValue : public Task {
33 class SleepSome : public Task {
119 // Task that adds a destruction observer to the current message loop.
120 class RegisterDestructionObserver : public Task {
173 // wait for the task to run (we could use a kernel event here
  /external/chromium/chrome/browser/metrics/
histogram_synchronizer.cc 79 Task* callback_task,
98 // Post a task that would be called after waiting for wait_time. This acts
175 Task* callback_task) {
176 Task* old_task = NULL;
193 // Just in case there was a task pending....
200 Task* task = NULL; local
208 task = callback_task_;
215 InternalPostTask(thread, task, unresponsive_renderers, started);
218 void HistogramSynchronizer::InternalPostTask(MessageLoop* thread, Task* task
    [all...]
  /frameworks/base/libs/hwui/
PathCache.h 81 sp<Task<SkBitmap*> > task() const { function in struct:android::uirenderer::PathTexture
85 void setTask(const sp<Task<SkBitmap*> >& task) {
86 mTask = task;
96 sp<Task<SkBitmap*> > mTask;
293 class PathTask: public Task<SkBitmap*> {
313 virtual void onProcess(const sp<Task<SkBitmap*> >& task);
  /external/chromium/base/synchronization/
waitable_event_watcher_posix.cc 17 // That AsyncWaiter has a pointer to MessageLoop, and a Task to be posted to it.
18 // The MessageLoop ends up running the task, which calls the delegate.
23 // the MessageLoop which runs the Task, we are assured that the delegate cannot
49 // This is an asynchronous waiter which posts a task to a MessageLoop when
54 AsyncWaiter(MessageLoop* message_loop, Task* task, Flag* flag)
56 cb_task_(task),
61 // If the callback has been canceled, we don't enqueue the task, we just
84 Task *const cb_task_;
90 // this by posting this task, which calls the delegate and keeps track of whe
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_tts_api.h 12 #include "base/task.h"
61 // the options passed to tts.speak, and a completion task to call
66 Task* completion_task);
69 // Calls the completion task and then destroys itself.
124 // The error string to pass to the completion task. Will be empty if
129 Task* completion_task_;
  /device/google/accessory/arduino/AndroidAccessory/
AndroidAccessory.cpp 107 max.Task();
108 usb.Task();
231 max.Task();
232 usb.Task();
  /external/chromium/base/files/
file_path_watcher.h 53 // A custom Task that always cleans up the PlatformDelegate, either when
56 class CancelTask : public Task {

Completed in 983 milliseconds

1 2 3 45 6 7 8 91011>>