Home
last modified time | relevance | path

Searched refs:pair (Results 1 – 17 of 17) sorted by relevance

/build/make/packaging/
Ddistdir.mk22 $(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/
Dbuild_custom_image.mk66 $(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));)
Dpackage-modules.mk100 $(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/
Dzip2zip.go107 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/
Dextract_kernel.py238 tools = {pair[0]: pair[1]
239 for pair in (token.split(':') for token in args.tools or [])}
/build/make/core/
Dproduct_config.mk255 $(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))) \
Djava_prebuilt_internal.mk38 $(foreach pair,$(PRODUCT_BOOT_JARS), \
39 $(if $(filter $(LOCAL_MODULE),$(call word-colon,2,$(pair))), \
Dsoong_java_prebuilt.mk111 boot_jars := $(foreach pair,$(PRODUCT_BOOT_JARS), $(call word-colon,2,$(pair)))
Dbase_rules.mk828 $(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))) \
Dsoong_app_prebuilt.mk143 $(call compat-copy-pair,$(a),$(dir)/$(notdir $(a)))))))
Dproduct_config.rbc110 # is a pair of PCMs name and its height in the product inheritance tree.
351 """If from file exists, returns [from:to] pair."""
Dpackage_internal.mk660 $(call compat-copy-pair,$(intermediates)/package_$(s).apk,$(dir)/$(LOCAL_MODULE)_$(s).apk)))))
DMakefile4062 $(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)))
Ddefinitions.mk2531 define compat-copy-pair
2541 define filter-copy-pair
/build/blueprint/
Dninja_defs.go430 for _, pair := range args {
431 err = nw.ScopedAssign(pair.name, pair.value)
/build/soong/cmd/sbox/sbox_proto/
Dsbox.proto56 // Copy describes a from-to pair of files to copy. The paths may be relative, the root that they
/build/soong/android/
Dconfig.go1774 pair := strings.SplitN(str, ":", 2)
1775 if len(pair) == 2 {
1776 apex := pair[0]
1777 jar := pair[1]