Searched refs:keys (Results 1 – 25 of 26) sorted by relevance
12
/build/blueprint/ |
D | glob.go | 85 keys := make([]globKey, 0, len(c.globs)) 87 keys = append(keys, k) 90 sort.Slice(keys, func(i, j int) bool { 91 if keys[i].pattern != keys[j].pattern { 92 return keys[i].pattern < keys[j].pattern 94 return keys[i].excludes < keys[j].excludes 97 globs := make(pathtools.MultipleGlobResults, len(keys)) 98 for i, key := range keys {
|
D | ninja_defs.go | 449 var keys []string 451 keys = append(keys, k) 453 sort.Strings(keys) 455 for _, name := range keys {
|
D | context_test.go | 536 keys := []string{"Blueprints", "dir1/Blueprints", "dir1/dir2/Blueprints"} 539 ctx.WalkBlueprintsFiles(".", keys, visitor) 569 keys := []string{"Blueprints", "dir1/Blueprints", "dir1/dir2/Blueprints"} 572 _, errs := ctx.WalkBlueprintsFiles(".", keys, func(file *parser.File) {})
|
/build/soong/ui/build/ |
D | environment.go | 80 func (e *Environment) Unset(keys ...string) { 83 if key, _, ok := decodeKeyValue(envVar); ok && inList(key, keys) { 106 func (e *Environment) Allow(keys ...string) { 109 if key, _, ok := decodeKeyValue(envVar); ok && inList(key, keys) {
|
/build/make/target/product/security/ |
D | README | 5 The test keys in this directory are used in development only and should 29 extracting public keys for embedding 38 This is called by build/make/core/Makefile to incorporate the OTA signing keys
|
D | Android.bp | 24 // Google-owned certificate for CTS testing, since we can't trust arbitrary keys
|
/build/bazel/json_module_graph/ |
D | library.jq | 28 [. as $m | . | keys | sort | .[] | . + "=" + ($m[.] | tostring)] | join(", ") 41 $outer | keys as $outerKeys | 42 $inner | keys as $innerKeys |
|
/build/soong/scripts/ |
D | generate-notice-files.py | 157 for file_key in files_with_same_hash.keys(): 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 | 157 for file_key in files_with_same_hash.keys(): 168 sorted_filenames = sorted(id_table.keys()) 257 filesets = [sorted(files_with_same_hash[md5]) for md5 in sorted(files_with_same_hash.keys())]
|
/build/soong/cc/ |
D | makevars.go | 45 keys := []string{} 47 keys = append(keys, key.(string)) 50 sort.Strings(keys) 51 return strings.Join(keys, " ")
|
/build/soong/scripts/hiddenapi/ |
D | merge_csv.py | 66 fieldnames = list(headers.keys())
|
/build/make/tools/releasetools/ |
D | sign_target_files_apks | 856 def WriteOtacerts(output_zip, filename, keys): argument 866 for k in keys: 1154 keys = {} 1194 keys[name] = (payload_private_key, container_key) 1196 return keys 1389 set(apk_keys.keys()) | set(apex_keys.keys()),
|
D | ota_utils.py | 362 keys = boot_variable_values.keys() 364 combinations = [dict(zip(keys, values))
|
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 | 637 for key in sorted(merged_dict.keys()): 1150 validate_merged_apex_info(output_target_files_temp_dir, partition_map.keys()) 1166 generate_care_map(partition_map.keys(), output_target_files_temp_dir)
|
D | check_target_files_signatures.py | 417 all_apks = set(self.apks.keys()) 418 all_apks.update(other.apks.keys())
|
D | common.py | 985 duplicates = self.prop_overrides.intersection(overrides.keys()) 989 self.prop_overrides = self.prop_overrides.union(overrides.keys()) 1213 if key in vendor_dict.keys(): 1265 if set(partitions.keys()) & set(group) 1270 % (uid, ",".join(sorted(partitions.keys())))) 3679 self._partition_updates.keys())
|
/build/bazel/rules/ |
D | static_libc.bzl | 46 include_paths = [path for path in include_dirs.keys()]
|
/build/soong/android/ |
D | androidmk.go | 699 keys := []string{} 702 keys = append(keys, k) 704 sort.Strings(keys) 705 for _, mod_type := range keys {
|
/build/make/core/ |
D | sysprop.mk | 150 BUILD_KEYS := test-keys 152 BUILD_KEYS := dev-keys
|
D | product_config.rbc | 82 return sorted(seen.keys()) if _options.rearrange == "sort" else seen.keys() 140 print(" ", " ".join(children.keys())) 141 configs[name] = (pcm, __h_cfg(handle), children.keys(), False)
|
/build/make/tools/fs_config/ |
D | fs_config_generator.py | 592 partitions = self._ranges.keys() 961 base_set = set(base_friendly.keys()) 962 oem_set = set(oem_friendly.keys()) 1271 partitions = hdr_parser.ranges.keys()
|
/build/bazel/rules_cc/examples/ |
D | experimental_cc_shared_library.bzl | 392 ctx.actions.write(content = "\n".join(exports.keys()), output = exports_debug_file) 410 exports = exports.keys(),
|
/build/make/tools/warn/ |
D | html_writer.py | 346 projects = sorted(pattern['projects'].keys())
|
/build/soong/docs/ |
D | perf.md | 75 …ic:R/AOSP.MASTER/$(date -d @$(cat out/build_date.txt) +%m%d%H%M):eng/test-keys >out/target/product… 82 …roduct/generic && echo R/AOSP.MASTER/$(cat out/build_number.txt):eng/test-keys >out/target/product…
|
12