/cts/suite/audio_quality/lib/src/ |
D | GenericFactory.cpp | 28 TaskGeneric* task; in createTask() local 31 task = new TaskBatch(); in createTask() 34 task = new TaskCase(); in createTask() 37 task = new TaskSequential(); in createTask() 40 task = new TaskProcess(); in createTask() 43 task = new TaskInput(); in createTask() 46 task = new TaskOutput(); in createTask() 49 task = new TaskSound(); in createTask() 52 task = new TaskSave(); in createTask() 57 task = new TaskGeneric(type); in createTask() [all …]
|
D | Report.cpp | 74 void Report::addCasePassed(const TaskCase* task) in addCasePassed() argument 77 task->getCaseName(name); in addCasePassed() 78 StringPair pair(name, task->getDetails()); in addCasePassed() 82 void Report::addCaseFailed(const TaskCase* task) in addCaseFailed() argument 85 task->getCaseName(name); in addCaseFailed() 86 StringPair pair(name, task->getDetails()); in addCaseFailed()
|
/cts/suite/audio_quality/test/ |
D | ModelBuilderTest.cpp | 53 TaskGeneric* task = mModelBuilder.parseTestDescriptionXml(xmlFile, true); in TEST_F() local 54 ASSERT_TRUE(task == NULL); in TEST_F() 56 delete task; in TEST_F() 61 TaskGeneric* task = mModelBuilder.parseTestDescriptionXml(xmlFile); in TEST_F() local 62 ASSERT_TRUE(task == NULL); in TEST_F() 63 delete task; in TEST_F() 68 TaskGeneric* task = mModelBuilder.parseTestDescriptionXml(xmlFile); in TEST_F() local 69 ASSERT_TRUE(task == NULL); in TEST_F() 70 delete task; in TEST_F() 75 TaskGeneric* task = mModelBuilder.parseTestDescriptionXml(xmlFile); in TEST_F() local [all …]
|
D | TaskTest.cpp | 117 TestTaskDummy* task = reinterpret_cast<TestTaskDummy*>(mTaskSetup); in TEST_F() local 118 ASSERT_TRUE(task->addStringAttributePublic(AAA, aaaVal)); in TEST_F() 119 ASSERT_TRUE(task->addStringAttributePublic(BBB, bbbVal)); in TEST_F() 121 ASSERT_TRUE(!task->addStringAttributePublic(CCC, bbbVal)); in TEST_F() 122 ASSERT_TRUE(task->findStringAttributePublic(AAA, read)); in TEST_F() 124 ASSERT_TRUE(task->findStringAttributePublic(BBB, read)); in TEST_F() 128 ASSERT_TRUE(!task->findStringAttributePublic(VERSION, read)); in TEST_F() 129 ASSERT_TRUE(!task->findStringAttributePublic(NAME, read)); in TEST_F()
|
/cts/suite/audio_quality/lib/src/task/ |
D | TaskGeneric.cpp | 67 TaskGeneric* task = this; in getTestCase() local 69 while (task != NULL) { in getTestCase() 70 if (task->getType() == ETaskCase) { in getTestCase() 72 return reinterpret_cast<TaskCase*>(task); in getTestCase() 74 task = task->getParent(); in getTestCase()
|
D | TaskSequential.cpp | 92 bool TaskSequential::queueAsyncTask(TaskAsync* task) in queueAsyncTask() argument 95 it = std::find(mAsyncTasks.begin(), mAsyncTasks.end(), task); in queueAsyncTask() 99 mAsyncTasks.push_back(task); in queueAsyncTask()
|
D | ModelBuilder.cpp | 248 bool ModelBuilder::parseAttributes(const TiXmlElement& elem, TaskGeneric& task) in parseAttributes() argument 257 if (!task.parseAttribute(name, value)) { in parseAttributes() 259 attr->Name(), attr->Value(), task.getType()); in parseAttributes()
|
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
D | richards.js | 167 Scheduler.prototype.addRunningTask = function (id, priority, queue, task) { argument 168 this.addTask(id, priority, queue, task); 179 Scheduler.prototype.addTask = function (id, priority, queue, task) { argument 180 this.currentTcb = new TaskControlBlock(this.list, id, priority, queue, task); 260 function TaskControlBlock(link, id, priority, queue, task) { argument 265 this.task = task; 337 return this.task.run(packet); 345 TaskControlBlock.prototype.checkPriorityAdd = function (task, packet) { argument 349 if (this.priority > task.priority) return this; 353 return task; [all …]
|
/cts/suite/audio_quality/lib/include/ |
D | Report.h | 41 void addCasePassed(const TaskCase* task); 42 void addCaseFailed(const TaskCase* task);
|
/cts/tests/tests/hardware/src/android/hardware/multiprocess/ |
D | ErrorLoggingService.java | 383 SettableFuture<List<LogEvent>> task = mFuturesQueue.poll(); in handleMessage() local 384 if (task == null) break; in handleMessage() 390 task.setResult(res); in handleMessage() 585 SettableFuture<List<LogEvent>> task = new SettableFuture<>(); in retrieveLog() local 593 mReplyHandler.addFuture(task); in retrieveLog() 604 res = (timeout < 0) ? task.get() : task.get(timeout, TimeUnit.MILLISECONDS); in retrieveLog()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/security/ |
D | KeyChainTest.java | 124 switch (step.task.getStatus()) { in onClick() 126 step.task.execute(); in onClick() 141 step.task.cancel(false); in onClick() 190 if (step.task.getStatus() == AsyncTask.Status.PENDING) { in updateUi() 456 AsyncTask<Void, Void, Void> task; field in KeyChainTest.Step 458 public Step(int instructionTextId, boolean skippable, AsyncTask<Void, Void, Void> task) { in Step() argument 461 this.task = task; in Step()
|
/cts/suite/audio_quality/lib/include/task/ |
D | TaskSequential.h | 37 bool queueAsyncTask(TaskAsync* task);
|
D | ModelBuilder.h | 51 virtual bool parseAttributes(const TiXmlElement& elem, TaskGeneric& task);
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/ |
D | BleServerService.java | 243 TimerTask task = new TimerTask() { in beginNotification() local 260 mNotificationTimer.schedule(task, 0, 1000); in beginNotification()
|
/cts/tools/dex-tools/dex/ |
D | classes0.out.dex | 48123 java.util.TimerTask task 51936 private final java.util.concurrent.Callable task 51989 private final java.util.concurrent.Callable task 52099 final java.lang.Runnable task
|