Searched refs:map (Results 1 – 25 of 40) sorted by relevance
12
/build/bazel/json_module_graph/ |
D | distanceFromLeaves.jq | 6 { Name: .Name, Deps: .Deps | map(.Name) } 10 group_by(.Name) | map({Name: .[0].Name, Deps: map(.Deps) | flatten | unique | sort}) 14 map({key: .Name, value: .Deps}) | from_entries 18 map(onlyDeps) | mergeDepsForSameModule | toMergeMap 23 map(.key as $key | {key: .key, value: .value | [.[] | select(. != $key)]}) | 30 map({ 35 map($old[.]) | 43 map({key: ., value: -1}) | from_entries |
|
D | library.jq | 49 # Transforms the variation map of dependencies (as specified by f) to a delta 50 # from the variation map of the module that depends on them 71 map({ 75 Modules: map(.Name) 83 { Name: .Name, Deps: .Deps | map(.Name) } 87 group_by(.Name) | map({Name: .[0].Name, Deps: map(.Deps) | flatten | unique | sort}) 91 map({key: .Name, value: .Deps}) | from_entries 95 map(onlyDeps) | mergeDepsForSameModule | toMergeMap 100 map(.key as $key | {key: .key, value: .value | [.[] | select(. != $key)]}) | 105 map($m[.] // []) + [.] | flatten | unique
|
D | fullTransitiveDepsProperties.jq | 11 map({Type: .[0].Type, 12 Props: map(.Module.Android.SetProperties) | flatten | map(.Name) | unique | sort }) |
|
D | moduleTypeStats.jq | 7 map({ 9 Count: map(.Name) | unique | length,
|
D | findModulesCrossPkgBoundary.jq | 6 [.[] | .Blueprint | getDirPath] | sort_by(.) | unique | map({(.):""}) | add 18 $nonNullActionModules | map({(.Name):getOutputsOfModule}) | add 29 | map({(.):""}) | add
|
D | properties.jq | 6 map(.Name)] |
|
D | directDeps.jq | 5 [.[] | select(.Name == $arg) | .Deps | map(.Name)] | flatten | unique | sort
|
D | usedVariations.jq | 7 {key: .[0].key, value: map(.value) | unique}] |
|
D | findModulesWithProperty.jq | 4 map(select(.Name == $a)) |
|
D | printModule.jq | 11 .Deps |= map(deleteDependencyVariations) |
|
D | variantTransitions.jq | 12 .Deps |= map(deleteDependencyVariations) |
|
/build/make/core/ |
D | checktree | 14 excludes_compiled = map(re.compile, excludes) 65 return map(matchit, lines) 82 files = map(lambda s: cwd+s, files) 87 added_depot_path = map(quotate, added_depot_path) 91 added = map(split_perforce_parts, added)
|
/build/soong/ui/metrics/bp2build_metrics_proto/ |
D | bp2build_metrics.proto | 31 map<string, uint64> ruleClassCount = 4; 37 map<string, uint64> convertedModuleTypeCount = 6; 40 map<string, uint64> totalModuleTypeCount = 7;
|
/build/make/tools/ |
D | compare_fileslist.py | 39 lines = map(string.split, lines) 40 lines = map(lambda (x,y): (y,int(x)), lines)
|
D | findleaves.py | 28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
|
/build/bazel/rules/cc/ |
D | cc_stub_library.bzl | 25 "stub_map": "The .map file containing library symbols for the specific API version.", 37 out_stub_map = ctx.actions.declare_file("/".join([name, "stub.map"])) 47 ndkstubgen_args.add_all(["--api-map", ctx.file._api_levels_file]) 77 "symbol_file": attr.label(mandatory = True, allow_single_file = [".map.txt"]),
|
/build/soong/docs/ |
D | map_files.md | 4 map.txt files. These files are [linker version scripts] with comments that are 5 semantically meaningful to [gen_stub_libs.py]. For an example of a map file, see 6 [libc.map.txt]. 9 [libc.map.txt]: https://cs.android.com/android/platform/superproject/+/master:bionic/libc/libc.map.… 49 These map files can (and should) also be used as version scripts for building 52 symbol visibility of the library to expose only the interface named by the map 98 Note: The map file alone does not contain all the information needed to 183 Note: Like `introduced`, the map file does not tell the whole story. The 185 the default for the entire map file.
|
/build/pesto/experiments/prepare_bazel_test_env/data/static/build/bazel/rules/ |
D | android_tf_test_launcher.sh | 27 --template:map test=atest \
|
D | cc_tf_test_launcher.sh | 26 --template:map test=atest \
|
D | java_tf_test_launcher.sh | 26 --template:map test=atest \
|
/build/make/tools/warn/ |
D | warn.py | 57 proc_result = pool.map(classify_warnings_fn, arg_groups[cpu])
|
/build/make/tools/releasetools/merge/ |
D | merge_compatibility_checks.py | 155 for policy in (map(lambda partition_and_path: get_file(*partition_and_path), 170 for policy in (map(lambda partition_and_path: get_file(*partition_and_path),
|
/build/make/tools/atree/ |
D | files.h | 41 const map<string, string>& variables,
|
D | files.cpp | 129 const map<string, string>& variables, in replace_variables() 150 for (map<string, string>::const_iterator it = variables.begin(); in replace_variables() 164 for (map<string, string>::const_iterator it = variables.begin(); in replace_variables() 179 const map<string, string>& variables, in read_list_file()
|
/build/make/tools/releasetools/ |
D | find_shareduid_violation.py | 66 out, err = map(lambda b: b.decode("utf-8"), p.communicate())
|
12