HomeSort by relevance Sort by last modified time
    Searched refs:Task (Results 201 - 225 of 338) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/84/1/.cp/ant_tasks/
metadataRepository-ant.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jdepend.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
CompileErrorCheck.java 14 * A custom Ant task that finds compile logs containing compile
32 import org.apache.tools.ant.Task;
38 public class CompileErrorCheck extends Task {
UnpackUpdateJars.java 26 import org.apache.tools.ant.Task;
34 public class UnpackUpdateJars extends Task {
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedPublisherTask.java 13 //TODO: enable support for running task on Windows (problems with ssh, scp, cvs)
23 import org.apache.tools.ant.Task;
48 public class RSSFeedPublisherTask extends Task {
124 // The method executing the task
226 private void runCVSExecTask(String task, String dir)
228 util.runExecTask(CVSExec, "-d " + CVSRoot + " -q " + task, dir); //$NON-NLS-1$ //$NON-NLS-2$
RSSFeedWatcherTask.java 22 import org.apache.tools.ant.Task;
48 public class RSSFeedWatcherTask extends Task {
106 // The method executing the task
179 // collect property from newNode and pass it to THIS task so that the local ant script can see it
187 // collect properties from exec task and pass them to THIS task so that the local ant script can see them
  /sdk/anttasks/src/com/android/ant/
GetTargetTask.java 31 import org.apache.tools.ant.Task;
46 * Task to resolve the target of the current Android project.
60 public class GetTargetTask extends Task {
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.cpp 59 class ProcessMessagesSoonTask : public ScriptExecutionContext::Task {
433 ScriptExecutionContext::Task::~Task()
  /external/webkit/Source/WebCore/storage/
Database.cpp 65 class DatabaseCreationCallbackTask : public ScriptExecutionContext::Task {
137 class DerefContextTask : public ScriptExecutionContext::Task {
187 OwnPtr<DatabaseOpenTask> task = DatabaseOpenTask::create(this, setVersionInNewDatabase, &synchronizer, e, success); local
188 m_scriptExecutionContext->databaseThread()->scheduleImmediateTask(task.release());
208 OwnPtr<DatabaseCloseTask> task = DatabaseCloseTask::create(this, &synchronizer); local
209 m_scriptExecutionContext->databaseThread()->scheduleImmediateTask(task.release());
307 OwnPtr<DatabaseTransactionTask> task = DatabaseTransactionTask::create(transaction); local
308 LOG(StorageAPI, "Scheduling DatabaseTransactionTask %p for transaction %p\n", task.get(), task->transaction());
310 m_scriptExecutionContext->databaseThread()->scheduleTask(task.release())
    [all...]
DatabaseSync.cpp 161 class CloseSyncDatabaseOnContextThreadTask : public ScriptExecutionContext::Task {
  /external/chromium/base/
task.h 15 // Task ------------------------------------------------------------------------
17 // A task is a generic runnable thingy, usually used for running code on a
20 class BASE_API Task : public tracked_objects::Tracked {
22 Task();
23 virtual ~Task();
29 class BASE_API CancelableTask : public Task {
66 // // If you'd like to only only have one pending task at a time, test for
67 // // |empty| before manufacturing another task.
178 // General task implementations ------------------------------------------------
180 // Task to delete an objec
    [all...]
  /external/chromium/chrome/browser/printing/cloud_print/
cloud_print_proxy_service.cc 179 bool CloudPrintProxyService::InvokeServiceTask(Task* task) {
184 process_control->Launch(task, NULL);
  /external/chromium/chrome/browser/safe_browsing/
malware_details_cache.cc 41 Task* callback) {
52 // Post a task in the message loop, so the callers don't need to
193 // Create a task so we don't take over the IO thread for too long.
  /external/chromium/chrome/browser/search_engines/
template_url_model_test_util.cc 20 // A Task used to coordinate when the database has finished processing
24 class QuitTask2 : public Task {
39 // Schedule a task on the thread that is processed after all
  /external/chromium/chrome/browser/service/
service_process_control_browsertest.cc 180 // Make sure using the same task for success and failure tasks works.
194 Task * task = NewRunnableFunction(&DecrementUntilZero, &launch_count); local
195 process->Launch(task, task);
  /external/chromium/chrome/browser/ui/gtk/
certificate_dialogs.cc 16 #include "base/task.h"
27 class Writer : public Task {
  /external/chromium/chrome/common/net/
url_fetcher_unittest.cc 30 class CurriedTask : public Task {
32 CurriedTask(Task* task, MessageLoop* target_loop)
33 : task_(task),
41 Task* const task_;
240 // Version of TestURLRequestContext that posts a Quit task to the IO
244 // The d'tor should execute in the IO thread. Post the quit task to the
298 class FetcherWrapperTask : public Task {
484 // The URLFetcher's test context will post a Quit task once it is
700 // run we expect to have a 4 second delay when posting the Start task
    [all...]
  /external/chromium/net/disk_cache/
stress_cache.cc 172 class CrashTask : public Task {
199 CrashTask* task = new CrashTask(); local
200 target_loop->PostDelayedTask(FROM_HERE, task, task_delay);
  /external/qemu/distrib/sdl-1.2.12/src/thread/amigaos/
SDL_thread.c 159 struct Task *wait;
  /external/webkit/Source/WebCore/bindings/v8/
ScriptDebugServer.cpp 48 ClientDataImpl(PassOwnPtr<ScriptDebugServer::Task> task) : m_task(task) { }
50 ScriptDebugServer::Task* task() const { return m_task.get(); } function in class:WebCore::__anon14697::ClientDataImpl
52 OwnPtr<ScriptDebugServer::Task> m_task;
256 void ScriptDebugServer::interruptAndRun(PassOwnPtr<Task> task)
258 v8::Debug::DebugBreakForCommand(new ClientDataImpl(task));
310 data->task()->run()
    [all...]
  /external/webkit/Source/WebCore/page/
GeolocationPositionCache.cpp 123 while (OwnPtr<ScriptExecutionContext::Task> task = m_queue.waitForMessage()) {
125 task->performTask(0);
  /external/webkit/Source/WebCore/storage/chromium/
DatabaseTrackerChromium.cpp 99 class TrackerRemoveOpenDatabaseTask : public ScriptExecutionContext::Task {
  /external/webkit/Source/WebCore/workers/
WorkerContext.h 87 virtual void postTask(PassOwnPtr<Task>); // Executes the task on context's thread asynchronously.
  /external/chromium/chrome/browser/history/
history_backend.h 310 // Sets the task to run and the message loop to run it on when this object
313 void SetOnBackendDestroyTask(MessageLoop* message_loop, Task* task);
332 friend class CommitLaterTask; // The commit task needs to call Commit().
577 // When non-NULL, this is the task that should be invoked on
579 Task* backend_destroy_task_;
  /external/chromium/chrome/browser/webdata/
web_data_service.h 19 #include "base/task.h"
39 class Task;
436 // Schedules a task to add form fields to the web database.
454 // Schedules a task to add an Autofill profile to the web database.
457 // Schedules a task to update an Autofill profile in the web database.
460 // Schedules a task to remove an Autofill profile from the web database.
474 // Schedules a task to add credit card to the web database.
477 // Schedules a task to update credit card in the web database.
480 // Schedules a task to remove a credit card from the web database.
547 // Schedule a task on our worker thread
    [all...]

Completed in 721 milliseconds

1 2 3 4 5 6 7 891011>>