Searched refs:pair (Results 1 – 17 of 17) sorted by relevance
/build/make/packaging/ |
D | distdir.mk | 22 $(foreach pair,$(DIST_GOAL_OUTPUT_PAIRS), \ 23 $(eval goal := $(call word-colon,1,$(pair))) \ 24 $(eval output := $(call word-colon,2,$(pair))) \ 38 $(foreach pair,$(DIST_SRC_DST_PAIRS), \ 39 $(eval src := $(call word-colon,1,$(pair))) \ 40 $(eval dst := $(DIST_DIR)/$(call word-colon,2,$(pair))) \
|
/build/make/core/tasks/tools/ |
D | build_custom_image.mk | 66 $(eval pair := $(subst :,$(space),$(f)))\ 67 $(eval src := $(word 1,$(pair)))\ 69 $(eval my_copy_pairs += $(src):$(my_staging_dir)/$(word 2,$(pair)))) 118 $(eval pair := $(subst :,$(space),$(p)))\ 119 mkdir -p $(dir $(word 2,$(pair)));\ 120 cp -Rf $(word 1,$(pair)) $(word 2,$(pair));)
|
D | package-modules.mk | 100 $(eval pair := $(subst :,$(space),$(p)))\ 101 mkdir -p $(dir $(word 2,$(pair))) && \ 102 cp -Rf $(word 1,$(pair)) $(word 2,$(pair)) && ) true
|
/build/soong/cmd/zip2zip/ |
D | zip2zip.go | 107 type pair struct { struct 116 matches := []pair{} 118 sortMatches := func(matches []pair) { 139 var includeMatches []pair 163 includeMatches = append(includeMatches, pair{file, newName, false}) 174 matches = append(matches, pair{file, file.Name, false}) 179 var matchesAfterExcludes []pair
|
/build/make/tools/ |
D | extract_kernel.py | 238 tools = {pair[0]: pair[1] 239 for pair in (token.split(':') for token in args.tools or [])}
|
/build/make/core/ |
D | product_config.mk | 255 $(foreach pair,$(PRODUCT_BOOT_JAR_MODULE_OVERRIDES),\ 256 $(eval _rbjmo_from := $(call word-colon,1,$(pair)))\ 257 $(eval _rbjmo_to := $(call word-colon,2,$(pair)))\ 306 $(foreach pair,$(PRODUCT_UPDATABLE_BOOT_JARS), \ 307 $(eval jar := $(call word-colon,2,$(pair))) \
|
D | java_prebuilt_internal.mk | 38 $(foreach pair,$(PRODUCT_BOOT_JARS), \ 39 $(if $(filter $(LOCAL_MODULE),$(call word-colon,2,$(pair))), \
|
D | soong_java_prebuilt.mk | 111 boot_jars := $(foreach pair,$(PRODUCT_BOOT_JARS), $(call word-colon,2,$(pair)))
|
D | base_rules.mk | 828 $(foreach pair, $(my_test_data_file_pairs), \ 829 $(eval parts := $(subst :,$(space),$(pair))) \ 834 …$(call filter-copy-pair,$(src_path),$(call append-path,$(dir),$(file)),$(my_installed_test_data)))… 841 $(foreach pair, $(my_test_data_file_pairs), \ 842 $(eval parts := $(subst :,$(space),$(pair))) \
|
D | soong_app_prebuilt.mk | 143 $(call compat-copy-pair,$(a),$(dir)/$(notdir $(a)))))))
|
D | product_config.rbc | 110 # is a pair of PCMs name and its height in the product inheritance tree. 351 """If from file exists, returns [from:to] pair."""
|
D | package_internal.mk | 660 $(call compat-copy-pair,$(intermediates)/package_$(s).apk,$(dir)/$(LOCAL_MODULE)_$(s).apk)))))
|
D | Makefile | 4062 $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair))) 4076 $(BUILT_KERNEL_CONFIGS_FILE): $(foreach pair,$(my_decompress_tools),$(call word-colon,2,$(pair)))
|
D | definitions.mk | 2531 define compat-copy-pair 2541 define filter-copy-pair
|
/build/blueprint/ |
D | ninja_defs.go | 430 for _, pair := range args { 431 err = nw.ScopedAssign(pair.name, pair.value)
|
/build/soong/cmd/sbox/sbox_proto/ |
D | sbox.proto | 56 // Copy describes a from-to pair of files to copy. The paths may be relative, the root that they
|
/build/soong/android/ |
D | config.go | 1774 pair := strings.SplitN(str, ":", 2) 1775 if len(pair) == 2 { 1776 apex := pair[0] 1777 jar := pair[1]
|