Searched refs:sorted (Results 1 – 25 of 33) sorted by relevance
12
/build/soong/cc/config/ |
D | clang.go | 24 var ClangUnknownCflags = sorted([]string{ 84 var ClangUnknownLldflags = sorted([]string{ 89 var ClangLibToolingUnknownCflags = sorted([]string{}) 278 func sorted(list []string) []string { func
|
/build/soong/scripts/ |
D | generate-notice-files.py | 102 sorted_filenames = sorted(itertools.chain.from_iterable(file_hash)) 168 sorted_filenames = sorted(id_table.keys()) 256 filesets = [sorted(files_with_same_hash[md5]) for md5 in sorted(files_with_same_hash.keys())]
|
/build/make/tools/ |
D | generate-notice-files.py | 102 sorted_filenames = sorted(itertools.chain.from_iterable(file_hash)) 168 sorted_filenames = sorted(id_table.keys()) 257 filesets = [sorted(files_with_same_hash[md5]) for md5 in sorted(files_with_same_hash.keys())]
|
D | merge-event-log-tags.py | 157 for name, t in sorted(by_tagname.iteritems()): 178 for n, t in sorted(by_tagnum.iteritems()):
|
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 | soong_to_convert.py | 101 return sorted(results, key=lambda result: (-result[0], result[1]))
|
D | check_elf_file.py | 417 dt_needed = sorted(set(self._file_under_test.dt_needed)) 475 for sym, ver in sorted(missing_symbols):
|
/build/make/tools/releasetools/ |
D | ota_utils.py | 148 sorted(metadata_dict.items())]) 179 for partition in sorted(set(PARTITIONS_WITH_BUILD_PROP) & ab_partitions): 198 partition_state.device.extend(sorted(partition_devices)) 199 partition_state.build.extend(sorted(partition_fingerprints)) 209 device_state.device.extend(sorted(build_devices)) 210 device_state.build.extend(sorted(build_fingerprints))
|
D | check_target_files_signatures.py | 353 for uid in sorted(apks_by_uid): 442 for (old, new), packages in sorted(by_digestpair.items()): 453 for i in sorted(packages):
|
D | test_validate_target_files.py | 266 for key in sorted(file_map_list.keys()): 317 for key in sorted(file_map_list.keys()):
|
D | merge_target_files.py | 248 for entry in sorted(data): 637 for key in sorted(merged_dict.keys()):
|
/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/warn/ |
D | severity.py | 60 levels = sorted(levels, key=lambda severity: severity.value)
|
D | html_writer.py | 131 i['members'] = sorted(set(i['members'])) 324 fixed_patterns = sorted(fixed_patterns) 346 projects = sorted(pattern['projects'].keys()) 376 csv_output = sorted(csv_output)
|
/build/make/tools/product_config/ |
D | inherit_tree.py | 16 for child in sorted(graph.get(node, [])):
|
/build/make/tools/fs_config/ |
D | README.md | 45 Ordering within the `TARGET_FS_CONFIG_GEN` files is not relevant. The paths for files are sorted 63 The declared AIDs are sorted in ascending numerical order based on the option "value". The string
|
/build/make/tests/ |
D | run.rbc | 49 { k:v for k, v in sorted(config.items()) }
|
/build/soong/scripts/hiddenapi/ |
D | generate_hiddenapi_lists.py | 242 flags = sorted(self._dict[api]) 244 return sorted(lines)
|
/build/make/core/ |
D | jacoco.mk | 110 …$(JAR) -uf $(PRIVATE_TEMP_JAR_PATH) $(call jar-args-sorted-files-in-directory,$(PRIVATE_INSTRUMENT…
|
D | product_config.rbc | 71 for attr, val in sorted(cfg.items()): 75 for attr, val in sorted(globals.items()): 80 """Rearrange value list: return only distinct elements, maybe sorted.""" 82 return sorted(seen.keys()) if _options.rearrange == "sort" else seen.keys() 149 # Stash this PCM, process children in the sorted order 151 for child_name in sorted(children, reverse = True):
|
D | static_java_library.mk | 209 $(call jar-args-sorted-files-in-directory,$(dir $@)aar)
|
/build/soong/cc/ |
D | library_test.go | 227 testCcErrorWithConfig(t, `"libfoo" .*: versions: not sorted`, config)
|
/build/soong/cc/symbolfile/ |
D | __init__.py | 322 sorted(list(multiply_defined_symbols)))
|
12