/build/soong/cc/config/ |
D | clang.go | 25 var ClangUnknownCflags = sorted([]string{ 76 var ClangLibToolingUnknownCflags = sorted([]string{}) 117 func sorted(list []string) []string { func
|
/build/bazel/scripts/bp2build-progress/ |
D | bp2build-progress.py | 132 for module, deps in sorted(modules.items()): 143 unconverted_deps=", ".join(sorted(unconverted_deps))) 160 input_modules = sorted(report_data.input_module) 164 sorted(dependency_analysis.IGNORED_KINDS)) 167 for count, modules in sorted(report_data.blocked_modules.items()): 169 for module_string in sorted(modules): 174 for count, dep in sorted( 182 sorted(report_data.dirs_with_unconverted_modules)))) 186 "\n".join(sorted(report_data.kind_of_unconverted_modules)))) 190 "\n".join(sorted(report_data.converted)))
|
/build/make/tools/ |
D | mk2bp_partition.py | 51 for lunch_target in sorted(lunch_targets): 86 for partition in sorted(partitions): 90 for makefile in sorted(makefile_by_partition[partition]):
|
D | generate-notice-files.py | 106 sorted_filenames = sorted(itertools.chain.from_iterable(file_hash)) 174 sorted_filenames = sorted(id_table.keys()) 263 filesets = [sorted(files_with_same_hash[md5]) for md5 in sorted(list(files_with_same_hash))]
|
D | merge-event-log-tags.py | 157 for name, t in sorted(by_tagname.items()): 178 for n, t in sorted(by_tagnum.items()):
|
D | compare_builds.py | 396 first_filelist = sorted([x for x in first_files], key=lambda x: x[1]) 397 second_filelist = sorted([x for x in second_files], key=lambda x: x[1]) 449 return [f.filename for f in sorted(result, key=lambda f: f.timestamp)] 464 return [x[0] for x in sorted([(item, GetFileTimestamp(key(item))) for item in items], 480 return [f.filename for f in sorted(result, key=lambda f: f.timestamp)]
|
D | compare_fileslist.py | 55 rows = sorted(rows, key=lambda x: x[0])
|
D | mk2bp_catalog.py | 586 for partition in sorted(partitions): 701 for partition in sorted(partitions): 719 for dirname in sorted(summary.directories.keys()): 1028 for filename in sorted(self.all_makefiles.keys()): 1035 row.append(";".join(sorted(set([get_partition_from_installed(HOST_OUT_ROOT, PRODUCT_OUT,
|
D | soong_to_convert.py | 101 return sorted(results, key=lambda result: (-result[0], result[1]))
|
/build/make/tools/releasetools/merge/ |
D | merge_utils.py | 88 for entry in sorted(data): 212 return sorted(item_list) 237 return sorted(keys)
|
/build/soong/mk2rbc/cmd/ |
D | mk2rbc.go | 507 var sorted []string 509 sorted = append(sorted, item) 511 sort.Slice(sorted, func(i int, j int) bool { 512 return freq[sorted[i]] > freq[sorted[j]] 516 for i, item := range sorted { 529 return res, len(sorted)
|
/build/make/tests/prefixed_sort_order/ |
D | product.rbc | 23 # >>> sorted(["base", "base-secondary"]) 25 # >>> sorted(["base.mk", "base-secondary.mk"])
|
/build/make/orchestrator/core/ |
D | lunch.py | 32 for dirent in sorted(it, key=lambda x: x.name): 53 for dirent in sorted(it, key=lambda x: x.name): 64 for subdir in sorted(subdirs): 277 for f in sorted(FindAllLunchable(".")):
|
D | test_lunch.py | 122 self.assertEqual(sorted(lunch.FindAllLunchable("test/configs")),
|
/build/make/tools/product_config/src/com/android/build/config/ |
D | MakeWriter.java | 128 TreeMap<String, Var> sorted = new TreeMap(); in writeStrVars() local 130 sorted.put(entry.getValue().getPosition().toString() + " " + entry.getKey(), in writeStrVars() 134 for (Var var: sorted.values()) { in writeStrVars()
|
D | Options.java | 79 TreeMap<Integer,Errors.Category> sorted = new TreeMap((new Errors()).getCategories()); in printHelp() local 81 for (final Errors.Category category: sorted.values()) { in printHelp()
|
/build/make/tools/releasetools/ |
D | ota_utils.py | 149 sorted(metadata_dict.items())]) 180 for partition in sorted(set(PARTITIONS_WITH_BUILD_PROP) & ab_partitions): 199 partition_state.device.extend(sorted(partition_devices)) 200 partition_state.build.extend(sorted(partition_fingerprints)) 210 device_state.device.extend(sorted(build_devices)) 211 device_state.build.extend(sorted(build_fingerprints))
|
D | target_files_diff.py | 158 list1 = sorted(os.listdir(dir1)) 159 list2 = sorted(os.listdir(dir2))
|
D | check_target_files_vintf.py | 135 for device_path, real_path in sorted(dirmap.items()): 176 …for device_path, target_files_rel_paths in sorted(DIR_SEARCH_PATHS.items(), key=lambda i: len(i[0]…
|
/build/make/tools/warn/ |
D | severity.py | 60 levels = sorted(levels, key=lambda severity: severity.value)
|
D | html_writer.py | 137 i['members'] = sorted(set(i['members'])) 330 fixed_patterns = sorted(fixed_patterns) 353 projects = sorted(pattern['projects'].keys()) 384 csv_output = sorted(csv_output)
|
/build/soong/android/ |
D | namespace.go | 41 sorted bool member 47 if s.sorted { 56 if !s.sorted { 61 s.sorted = true
|
/build/make/tools/product_config/ |
D | inherit_tree.py | 16 for child in sorted(graph.get(node, [])):
|
/build/bazel/scripts/difftool/ |
D | clangcompile.py | 61 self.misc_flags = sorted(misc, key=flag_repr) 121 for k in sorted(defines_by_var):
|
/build/make/core/ |
D | product_config.rbc | 74 for attr, val in sorted(globals.items()): 77 for nsname, nsvars in sorted(val.items()): 82 for var, val in sorted(nsvars.items()): 91 for goal_name, goal_src_dst_list in sorted(val.items()): 93 for sd in sorted(goal_src_dst_list): 103 """Rearrange value list: return only distinct elements, maybe sorted.""" 105 return sorted(seen.keys()) if _options.rearrange == "sort" else seen.keys() 110 return [x[:-3] for x in sorted([y + ".mk" for y in pcm_names], reverse=True)] 161 …globals["ARTIFACT_PATH_REQUIREMENT_PRODUCTS"] = sorted(globals["ARTIFACT_PATH_REQUIREMENT_PRODUCTS… 195 … globals["PRODUCTS."+config+".mk.INHERITS_FROM"] = sorted([x + ".mk" for x in configs[config][2]]) [all …]
|