Home
last modified time | relevance | path

Searched refs:sorted (Results 1 – 25 of 58) sorted by relevance

123

/tools/metalava/src/main/java/com/android/tools/metalava/
DAnnotationStatistics.kt180 val sorted = filtered.sortedWith(Comparator { o1, o2 -> in <lambda>() constant
198 reportTopUnannotatedClasses(sorted, used) in <lambda>()
199 printMemberTable(sorted, used) in <lambda>()
202 …private fun reportTopUnannotatedClasses(sorted: List<MemberItem>, used: HashMap<MemberItem, Int>) { in <lambda>()
205 for (item in sorted) { in <lambda>()
301 sorted: List<MemberItem>, in <lambda>()
319 sorted, in <lambda>()
/tools/asuite/atest/test_finders/
Dtest_finder_utils_unittest.py187 self, sorted(test_finder_utils.extract_test_from_tests(
188 FIND_THREE_LIST)), sorted(paths))
193 self, sorted(test_finder_utils.extract_test_from_tests(
194 FIND_THREE_LIST)), sorted(paths))
204 self, sorted(test_finder_utils.extract_test_from_tests(
205 FIND_THREE_LIST)), sorted(paths))
Dcache_finder.py41 sorted_base_ti = sorted(
44 sorted_cache_ti = sorted(vars(cached_test_info).keys())
Dtest_finder_utils.py298 return extract_test_from_tests(sorted(list(verified_tests)))
853 sorted_methods = sorted(list(methods))
/tools/tradefederation/core/atest/test_finders/
Dtest_finder_utils_unittest.py184 self, sorted(test_finder_utils.extract_test_from_tests(
185 FIND_THREE_LIST)), sorted(paths))
190 self, sorted(test_finder_utils.extract_test_from_tests(
191 FIND_THREE_LIST)), sorted(paths))
201 self, sorted(test_finder_utils.extract_test_from_tests(
202 FIND_THREE_LIST)), sorted(paths))
Dcache_finder.py40 sorted_base_ti = sorted(
43 sorted_cache_ti = sorted(vars(cached_test_info).keys())
/tools/asuite/aidegen/lib/
Dide_common_util.py46 ls_output = sorted(ls_output)
127 return sorted(files_found)
146 return sorted(files_found)
231 ls_output = sorted(ls_output, reverse=True)
Dide_util_unittest.py558 self.assertEqual(sorted(config_paths), sorted(expected_result))
574 self.assertEqual(sorted(config_paths), sorted(expected_result))
Declipse_project_file_gen.py180 LINKEDRESOURCES=''.join(sorted(list(links))))
286 SRC=''.join(sorted(src_entries)),
287 LIB=''.join(sorted(jar_entries)))
Declipse_project_file_gen_unittest.py91 generated_result = sorted(self.eclipse._gen_src_path_entries())
103 generated_result = sorted(self.eclipse._gen_src_path_entries())
Dide_util.py907 ls_output = sorted(ls_output)
913 match_eclipses = sorted(match_eclipses)
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterLogSaver.java184 op = stream.sorted().findFirst(); in findTestContextFile()
187 op = stream.sorted(Comparator.reverseOrder()).findFirst(); in findTestContextFile()
227 String content = filenames.stream().sorted().collect(Collectors.joining("\n")); in writeFilenamesToFile()
242 .sorted(Comparator.comparing(Map.Entry::getKey)) // sort by filename in uploadFiles()
/tools/test/connectivity/acts_tests/tests/google/tel/live/
DTelLiveConnectivityMonitorBaseTest.py368 sorted(troubleshooter_database.items()))
393 sorted(call_summary_info.items()))
413 sorted(call_statistics_info.items()))
427 sorted(diagnostics_info.items()))
DTelLiveImsSettingsTest.py237 sorted(user_config_profile.items()))
269 sorted(user_config_profile.items()))
301 sorted(user_config_profile.items()))
/tools/tradefederation/core/src/com/android/tradefed/util/testmapping/
DTestInfo.java280 .sorted() in toString()
290 ",", mKeywords.stream().sorted().collect(Collectors.toList()))); in toString()
298 ",", mSources.stream().sorted().collect(Collectors.toList()))); in toString()
/tools/asuite/aidegen/project/
Dsource_splitter.py153 projects = sorted(self._projects, key=lambda k: len(
175 projects = sorted(self._projects, key=lambda k: len(
186 dep_projects = sorted(self._projects, key=lambda k: len(
/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
DCentralDirectory.java421 List<StoredEntry> sorted = Lists.newArrayList(entries.values()); in computeByteRepresentation() local
422 sorted.sort(StoredEntry.COMPARE_BY_NAME); in computeByteRepresentation()
437 for (StoredEntry entry : sorted) { in computeByteRepresentation()
/tools/asuite/aidegen/idea/
Diml.py187 SOURCES=''.join(sorted(srcs)))
200 self._srcs = ''.join(sorted(srcs))
/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/
DClusterLogSaverTest.java243 .sorted() in testInvocationEnded()
284 .sorted() in testInvocationEnded_uploadError()
/tools/asuite/atest/
Datest.py430 sorted_build_targets = sorted(list(test_info.build_targets))
559 for module in sorted(testable_modules):
/tools/test/openhst/
Dstress_test.py710 for event, count in sorted(self.event_counter.items()):
820 for line in sorted(
/tools/test/connectivity/acts/framework/acts/controllers/
Dandroid_device.py540 session_id = sorted(self._sl4a_manager.sessions.keys())[0]
549 session_id = sorted(self._sl4a_manager.sessions.keys())[0]
/tools/metalava/
DFORMAT.md92 The annotations should be sorted alphabetically by fully qualified name.
418 classes. The classes are listed by fully qualified name, but in v1 it was sorted
/tools/test/connectivity/acts/framework/acts/test_utils/tel/
Dtel_test_utils.py358 ad.log.info("SubId %s info: %s", sub_id, sorted(sub_info.items()))
447 ad.log.info("SubId %s info: %s", sub_id, sorted(
451 ad.log.info("SubId %s info: %s", sub_id, sorted(
473 ad.log.info("SubId %s info: %s", sub_id, sorted(
1850 ad.log.info("New call info = %s", sorted(call_info.items()))
3543 sorted(dumpsys_last_call_info(ad).items()))
/tools/acloud/setup/
Dsetup_args.py26 _FIELD_NAMES = sorted([field.name for field in UserConfig.DESCRIPTOR.fields])

123