HomeSort by relevance Sort by last modified time
    Searched refs:tasks (Results 1 - 25 of 778) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jmdns/src/javax/jmdns/impl/tasks/
package-info.java 1 package javax.jmdns.impl.tasks;
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
package-info.java 1 package javax.jmdns.impl.tasks.resolver;
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
package-info.java 1 package javax.jmdns.impl.tasks.state;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
AppButtonData.java 29 // Recent tasks for this app, sorted by lastActiveTime, descending.
30 public ArrayList<RecentTaskInfo> tasks; field in class:AppButtonData
38 return tasks == null ? 0 : tasks.size();
49 if (tasks == null) {
50 tasks = new ArrayList<RecentTaskInfo>();
52 tasks.add(task);
56 if (tasks != null) {
57 tasks.clear();
  /frameworks/base/libs/hwui/tests/microbench/
TaskManagerBench.cpp 42 std::vector<sp<TrivialTask> > tasks; local
43 tasks.reserve(state.max_iterations);
46 tasks.emplace_back(new TrivialTask);
47 benchmark::DoNotOptimize(tasks.back());
55 std::vector<sp<TrivialTask> > tasks; local
56 tasks.reserve(state.max_iterations);
59 tasks.emplace_back(new TrivialTask);
60 benchmark::DoNotOptimize(tasks.back());
61 processor->add(tasks.back());
64 for (sp<TrivialTask>& task : tasks) {
73 std::vector<sp<TrivialTask> > tasks; local
    [all...]
  /device/google/marlin/
init.foreground.sh 7 echo -n $PID > /dev/cpuset/foreground/tasks
10 echo -n $PID > /dev/cpuset/foreground/tasks
  /frameworks/data-binding/extensions/
build.gradle 24 def bundleSupportLibTask = tasks['bundleSupportLib']
37 bundleSupportLibTask.dependsOn tasks['uploadArchives']
39 def configureOut = tasks.create(name: 'configureOut') << {
41 def deployer = tasks['uploadArchives'].repositories.mavenDeployer.repository
46 tasks['uploadArchives'].mustRunAfter configureOut
47 tasks['uploadArchives'].mustRunAfter unzipRepo
56 preparePrebuilds.dependsOn project.tasks.findAll {task -> task.name.startsWith('prebuild')}
  /external/ltp/testcases/kernel/controllers/memcg/regression/
memcg_test_4.sh 27 echo $$ > memcg/0/tasks
43 echo $pid > memcg/tasks 2> /dev/null
44 echo $$ > memcg/tasks 2> /dev/null
  /frameworks/support/buildSrc/src/main/groovy/android/support/checkapi/
ApiXmlConversionTask.groovy 19 import org.gradle.api.tasks.JavaExec
20 import org.gradle.api.tasks.InputFile
21 import org.gradle.api.tasks.ParallelizableTask
22 import org.gradle.api.tasks.OutputFile
UpdateApiTask.groovy 21 import org.gradle.api.tasks.Input
22 import org.gradle.api.tasks.InputFile
23 import org.gradle.api.tasks.Optional
24 import org.gradle.api.tasks.TaskAction
25 import org.gradle.api.tasks.OutputFile
26 import org.gradle.api.tasks.WorkResult
  /external/ltp/testcases/kernel/controllers/io-throttle/
run_io_throttle_test.sh 51 for tasks in 1 2 4; do
76 if [ $tasks -eq 1 ]; then
81 echo -n ">> testing $tasks parallel $stream per cgroup "
89 /bin/echo $$ > /dev/blockioctl/$MYGROUP/tasks
96 ./iobw -direct $tasks $BUFSIZE $DATASIZE > /tmp/$MYGROUP.out &
99 /bin/echo $$ > /dev/blockioctl/tasks
107 echo "ERROR: error code $ret during test $tasks.$strategy.$i. Exiting test."
115 echo "TPASS Block device I/O bandwidth controller: test $tasks.$strategy.$i PASSED";
117 echo "TFAIL Block device I/O bandwidth controller: test $tasks.$strategy.$i FAILED";
  /external/autotest/server/cros/clique_lib/
clique_dut_log_collector.py 45 tasks = []
52 tasks.append(task)
54 for task in tasks:
56 for task in tasks:
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
MockTask.java 70 public static void assertRanNever(String message, MockTask... tasks) {
71 for (MockTask task : tasks) {
76 public static void assertRanOnce(String message, MockTask... tasks) {
77 for (MockTask task : tasks) {
  /external/autotest/site_utils/suite_scheduler/
sanity.py 28 def CheckControlFileExistence(tasks):
36 @param tasks The list of tasks to check.
42 for task in tasks:
base_event_unittest.py 42 mox.IgnoreArg()).InAnyOrder('tasks').AndReturn(True)
64 @var _TASKS: Specs for several tasks to run.
85 """Tests that tasks are de-duped at BaseEvent creation."""
86 tasks = [FakeTask(*task, pymox=self.mox) for task in self._TASKS]
87 tasks.append(FakeTask(*self._TASKS[0], pymox=self.mox))
91 event.tasks = tasks
92 self.assertEquals(len(event.tasks), len(self._TASKS))
96 """Tests that tasks are all run on Handle()."""
97 tasks = [FakeTask(*task, pymox=self.mox) for task in self._TASKS
    [all...]
  /frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
MavenDependencyCollectorPlugin.groovy 28 def localizeDependenciesTask = parent.tasks.findByName(DEFAULT_TASK_NAME)
30 localizeDependenciesTask = parent.tasks.
38 project.tasks.create("collectDependenciesOf${it.getName().capitalize()}", MavenDependencyCollectorTask, {
45 project.tasks.create("buildLicenseNotice", ExportLicensesTask) {
  /external/libchrome/base/
tracked_objects_unittest.cc 80 ASSERT_EQ(1u, process_data_phase.tasks.size());
82 EXPECT_EQ(kFile, process_data_phase.tasks[0].birth.location.file_name);
84 process_data_phase.tasks[0].birth.location.function_name);
86 process_data_phase.tasks[0].birth.location.line_number);
88 EXPECT_EQ(birth_thread, process_data_phase.tasks[0].birth.thread_name);
90 EXPECT_EQ(count, process_data_phase.tasks[0].death_data.count);
92 process_data_phase.tasks[0].death_data.run_duration_sum);
93 EXPECT_EQ(run_ms, process_data_phase.tasks[0].death_data.run_duration_max);
95 process_data_phase.tasks[0].death_data.run_duration_sample);
97 process_data_phase.tasks[0].death_data.queue_duration_sum)
    [all...]
at_exit.cc 74 std::stack<base::Closure> tasks; local
77 tasks.swap(g_top_manager->stack_);
81 while (!tasks.empty()) {
82 base::Closure task = tasks.top();
84 tasks.pop();
  /external/guava/guava-tests/test/com/google/common/eventbus/
AsyncEventBusTest.java 56 List<Runnable> tasks = executor.getTasks(); local
57 assertEquals("One event dispatch task should be queued.", 1, tasks.size());
59 tasks.get(0).run();
66 * An {@link Executor} wanna-be that simply records the tasks it's given.
73 List<Runnable> tasks = Lists.newArrayList(); field in class:AsyncEventBusTest.FakeExecutor
77 tasks.add(task);
81 return tasks;
  /external/toolchain-utils/bestflags/
steering_test.py 25 # The number of tasks to be put in each generation to be tested.
28 # The stride of permutation used to shuffle the input list of tasks. Should be
40 def __init__(self, tasks, next_generations):
44 tasks: A set of tasks to be run.
48 Generation.__init__(self, tasks, None)
64 generation. The steering algorithm should send all the tasks to the next stage
71 """Test that the steering algorithm processes all the tasks properly.
73 Test that the steering algorithm sends all the tasks to the next stage. Test
74 that the steering algorithm terminates once all the tasks have bee
    [all...]
generation_test.py 20 # The number of tasks to be put in a generation to be tested.
23 # The stride of permutation used to shuffle the input list of tasks. Should be
31 Given a set of tasks in the generation, if there is any task that is pending,
38 Produce a generation with a set of tasks. Set the cost of the task one by
40 for all the tasks. After the costs of all the tasks are set, the Done method
48 # The tasks for the generation to be tested.
49 tasks = [IdentifierMockTask(TEST_STAGE, t) for t in testing_tasks]
51 gen = Generation(set(tasks), None)
57 # The Done method of the Generation should return false before all the tasks
    [all...]
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.0/
kotlin-gradle-plugin-core-1.0.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-gradle-plugin-core/1.0.2/
kotlin-gradle-plugin-core-1.0.2.jar 
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowActivityManager.java 17 private List<ActivityManager.RunningTaskInfo> tasks = field in class:ShadowActivityManager
28 return tasks;
49 * Non-Android accessor to set the list of running tasks.
50 * @param tasks
52 public void setTasks(List<ActivityManager.RunningTaskInfo> tasks) {
53 this.tasks = tasks;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
repository-tools-ant.jar 

Completed in 2155 milliseconds

1 2 3 4 5 6 7 8 91011>>