/build/make/common/ |
D | math.mk | 67 $(if $(word 2,$(1)),$(call math-error,Multiple words in a single argument: $(1))) \ 73 $(if $(word 2,$(1)),$(call math-error,Multiple words in a single argument: $(1))) \ 81 $(call math-expect-error,(call math_is_number,1 2),Multiple words in a single argument: 1 2) 82 $(call math-expect-error,(call math_is_number,no 2),Multiple words in a single argument: no 2) 87 $(call math-expect-error,(call math_is_zero,1 2),Multiple words in a single argument: 1 2) 88 $(call math-expect-error,(call math_is_zero,no 2),Multiple words in a single argument: no 2) 100 $(call math-expect-error,(call _math_check_valid,1 2),Multiple words in a single argument: 1 2) 126 $(call math-expect-error,(call math_max,1 2,3),Multiple words in a single argument: 1 2) 157 $(strip $(eval $(1) := $($(1)) .)$(words $($(1)))) 204 $(if $(filter $(words x $(_INT_LIMIT_WORDS)),$(words $(wordlist 1,$(1),x $(_INT_LIMIT_WORDS)))),\ [all …]
|
/build/make/tools/ |
D | product_debug.py | 28 words = line.split("=", 1) 29 if len(words) == 1: 30 return (words[0], "") 32 return (words[0], words[1])
|
D | java-layers.py | 132 for n,words in lines: 133 if len(words) == 1: 134 lower = words[0] 151 elif len(words) == 2: 152 lower = words[0] 153 upper = words[1] 166 filename, n, words[2]))
|
/build/soong/androidmk/parser/ |
D | make_strings.go | 147 var words []*MakeString 195 words = append(words, word) 211 words = append(words, word) 213 return words
|
/build/make/core/ |
D | device.mk | 62 $(if $(filter 1,$(words $(d))), \ 64 $(if $(filter 0,$(words $(d))), \
|
D | aapt_flags.mk | 6 ifeq ($(filter 0 1,$(words $(filter --extra-packages,$(LOCAL_AAPT_FLAGS)))),)
|
D | product_config.rbc | 275 is split into words and then prefix is prepended to each one. 289 is split into words and then suffix is appended to each one. 372 """Return all the words from `text' that do not match any word in `pattern'. 375 pattern: string or list of words. '%' stands for wildcard (in regex terms, '.*') 376 text: string or list of words 378 list of words 388 """Return all the words in `text` that match `pattern`. 391 pattern: strings of words or a list. A word can contain '%', 393 text: string or list of words. 402 def __mk2regex(words): [all …]
|
D | dumpvar.mk | 33 $(foreach part, $(wordlist 2, $(words $($(v))), $($(v))),\
|
D | product.mk | 61 $(if $(call math_lt,$(words $(_parts)),2), \ 63 $(if $(call math_gt_or_eq,$(words $(_parts)),4), \ 544 $(if $(filter 2 3,$(words $(subst :,$(space),$(cf)))),, \ 567 $(if $(filter 1,$(words $(p))), \ 569 $(if $(filter 0,$(words $(p))), \
|
D | product_config.mk | 162 ifneq (1,$(words $(current_product_makefile))) 300 ifneq (1,$(words $(PRODUCT_DEFAULT_DEV_CERTIFICATE))) 349 ifneq ($(filter-out 0 1,$(words $(PRODUCT_ADB_KEYS))),) 459 $$(if $$(filter 2,$$(words $$(subst :,$$(space),$$(rule)))),,\
|
D | dex_preopt_libart.mk | 49 my_rest_pairs := $(wordlist 2,$(words $(my_copy_pairs)),$(my_copy_pairs))
|
D | node_fns.mk | 99 $(if $(filter-out 0 1,$(words $(filter $(2),$(1)))), \
|
D | definitions.mk | 524 $(if $(1),$(call reverse-list,$(wordlist 2,$(words $(1)),$(1)))) $(firstword $(1)) 2002 $(call dump-words-to-file,$(PRIVATE_RES_FLAT),$(dir $@)aapt2-flat-list) 2003 $(call dump-words-to-file,$(PRIVATE_OVERLAY_FLAT),$(dir $@)aapt2-flat-overlay-list) 2050 define dump-words-to-file 2080 @$(if $(wordlist 13501,13502,$(1)),$(error Too many words ($(words $(1))))) 2108 $(call dump-words-to-file,$(sort $(PRIVATE_JAVA_SOURCES)),$@.tmp) 2331 $(call dump-words-to-file, $(PRIVATE_EXTRA_JAR_ARGS), $(1).jar-arg-list) 3053 $(word 1,$(1)) $(call _clean-path-strip-dotdot,$(wordlist 2,$(words $(1)),$(1))) 3055 $(call _clean-path-strip-dotdot,$(wordlist 3,$(words $(1)),$(1))) 3058 $(word 1,$(1)) $(call _clean-path-strip-dotdot,$(wordlist 2,$(words $(1)),$(1))) [all …]
|
D | board_config.mk | 180 ifneq ($(words $(board_config_mk)),1) 840 ifneq ($(words $(BOARD_VENDOR_RAMDISK_FRAGMENTS)),$(words $(sort $(BOARD_VENDOR_RAMDISK_FRAGMENTS))…
|
D | app_prebuilt_internal.mk | 273 ifneq (1,$(words $(my_src_dir)))
|
D | envsetup.mk | 19 $(call find_and_earlier,$(wordlist 2,$(words $(1)),$(1)),$(2))))) 315 ifneq ($(build_variant)-$(words $(TARGET_BUILD_VARIANT)),-1)
|
D | java_common.mk | 447 ifneq ($(words $(LOCAL_INSTRUMENTATION_FOR)),1)
|
D | main.mk | 454 ifneq ($(words $(sort $(filter-out $(INTERNAL_MODIFIER_TARGETS) checkbuild emulator_tests,$(MAKECMD… 540 subdir_makefiles_total := $(words int $(subdir_makefiles) post finish) 550 subdir_makefiles_total := $(words init post finish)
|
D | base_rules.mk | 199 ifneq ($(words $(LOCAL_MODULE_CLASS)),1)
|
D | Makefile | 119 …$(eval _makefiles := $$(wordlist 1,$(call int_subtract,$(words $(ALL_COPIED_HEADERS.$(dest).MAKEFI… 120 $(foreach src,$(wordlist 1,$(call int_subtract,$(words $(_srcs)),1),$(_srcs)), \ 844 ifneq (1,$(words $(my_installed_prebuilt_gki_apex))) # len(my_installed_prebuilt_gki_apex) > 1 3537 ifneq ($(words $(sort $(INTERNAL_AVB_PARTITIONS_IN_CHAINED_VBMETA_IMAGES))),$(words $(INTERNAL_AVB_…
|
/build/make/tools/product_config/src/com/android/build/config/ |
D | ConvertMakeToGenericConfig.java | 192 final ArrayList<String> words = split(varText, prevText); in convertInheritedVar() local 193 if (words.size() == 0) { in convertInheritedVar() 198 if (words.size() > 2) { in convertInheritedVar() 208 return new GenericConfig.Assign(varName, Str.toList(varVal.getPosition(), words)); in convertInheritedVar()
|
/build/make/tools/atree/ |
D | files.cpp | 257 vector<string> words; in read_list_file() local 259 split_line(p, &words); in read_list_file() 263 for (size_t k=0; k<words.size(); k++) { in read_list_file() 264 printf("'%s' ", words[k].c_str()); in read_list_file() 272 for (vector<string>::iterator it = words.begin(); it != words.end(); ++it) { in read_list_file()
|
/build/make/core/tasks/ |
D | ide.mk | 28 ifneq ($(words $(eclipse_project_goals)),1)
|
/build/make/tools/releasetools/ |
D | pylintrc | 238 # List of comma separated words that should not be checked. 239 spelling-ignore-words= 244 # Tells whether to store unknown words to indicated private dictionary in 246 spelling-store-unknown-words=no
|
/build/soong/ |
D | README.md | 220 other words, "//_scope_:_name_" is globally unique module reference, e.g, 237 is searched for "_name_" (in other words, only the modules not belonging to an
|