/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/skia/dm/ |
DMTileGridTask.cpp | 14 TileGridTask::TileGridTask(const Task& parent, skiagm::GM* gm, SkBitmap reference, SkISize tileSize) 15 : Task(parent)
|
/frameworks/base/services/java/com/android/server/wm/ |
TaskStack.java | 50 private final ArrayList<Task> mTasks = new ArrayList<Task>(); 83 ArrayList<Task> getTasks() { 96 * Put a Task in this stack. Used for adding and moving. 97 * @param task The task to add. 100 boolean addTask(Task task, boolean toTop) { 109 if (task.mUserId != currentUserId) { 110 // Place the task below all current user tasks 287 Task task = mTasks.get(taskNdx); local [all...] |
/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:__anon1418::EventInjector::Event 124 // Does nothing. This function can be called from a task [all...] |
/external/chromium_org/chrome/browser/sync_file_system/local/ |
syncable_file_system_operation.cc | 35 : public SyncableFileOperationRunner::Task { 38 const base::Closure& task) 40 task_(task), 88 scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask( 94 operation_runner_->PostOperationTask(task.Pass()); 114 scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask( 120 operation_runner_->PostOperationTask(task.Pass()); 137 scoped_ptr<SyncableFileOperationRunner::Task> task(new QueueableTask [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_org/third_party/WebKit/Source/bindings/v8/ |
ScriptDebugServer.h | 83 class Task { 85 virtual ~Task() { } 88 static void interruptAndRun(PassOwnPtr<Task>, v8::Isolate*);
|
/art/runtime/ |
barrier_test.cc | 28 class CheckWaitTask : public Task { 97 class CheckPassTask : public Task {
|
thread_pool_test.cc | 26 class CountTask : public Task { 93 // Ensure that the task added after the workers were stopped doesn't get run. 103 class TreeTask : public Task { 129 // Test that adding new tasks from within a task works.
|
/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_;
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
xmpptask.h | 34 #include "talk/base/task.h" 46 // See Task and XmppClient first. 48 // XmppTask is a task that is designed to go underneath XmppClient and be 56 // and if so, queue it and Wake() the task, or if a stanza does not belong 83 virtual void AddXmppTask(XmppTask* task, XmppEngine::HandlerLevel level) = 0; 84 virtual void RemoveXmppTask(XmppTask* task) = 0; 96 // Task/TaskParent/TaskRunner. For now, this works. 97 class XmppTaskParentInterface : public talk_base::Task { 100 : Task(parent) { 169 // Returns true if the task is under the specified rate limit and updates th [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
FetchValidator.java | 14 import org.apache.tools.ant.Task; 25 public class FetchValidator extends 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 {
|
/external/chromium/chrome/browser/ |
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...] |
plugin_data_remover.h | 13 class Task;
|
/external/chromium/chrome/browser/password_manager/ |
password_store_mac.h | 37 virtual void ScheduleTask(Task* task);
|