Searched refs:words (Results 1 – 15 of 15) sorted by relevance
/build/tools/atree/ |
D | files.cpp | 237 vector<string> words; in read_list_file() local 239 split_line(p, &words); in read_list_file() 243 for (size_t k=0; k<words.size(); k++) { in read_list_file() 244 printf("'%s' ", words[k].c_str()); in read_list_file() 249 if (words.size() == 1) { in read_list_file() 252 string w0 = replace_variables(words[0], variables, &error); in read_list_file() 259 else if (words.size() == 2) { in read_list_file() 263 w0 = replace_variables(words[0], variables, &error); in read_list_file() 265 w1 = replace_variables(words[1], variables, &error); in read_list_file()
|
/build/core/ |
D | device.mk | 62 $(if $(filter 1,$(words $(d))), \ 64 $(if $(filter 0,$(words $(d))), \
|
D | product.mk | 156 $(if $(filter 2,$(words $(subst :,$(space),$(cf)))),, \ 179 $(if $(filter 1,$(words $(p))), \ 181 $(if $(filter 0,$(words $(p))), \
|
D | dex_preopt.mk | 70 $(if $(filter 1,$(words $(1)))$(filter 0,$(words $(1))),,\
|
D | product_config.mk | 96 ifneq ($(words $(product_goals)),1) 102 ifneq ($(words $(product_goals)),2) 161 ifneq ($(words $(unbundled_goals)),1)
|
D | envsetup.mk | 44 ifneq ($(build_variant)-$(words $(TARGET_BUILD_VARIANT)),-1) 319 ifneq ($(words $(dumpvar_goals)),1)
|
D | cleanbuild.mk | 200 ifneq (2,$(words $(HOST_OUT) $(PRODUCT_OUT)))
|
D | definitions.mk | 1243 define dump-words-to-file 1265 @$(if $(wordlist 4001,4002,$(1)),$(error Too many words ($(words $(1))))) 1295 $(call dump-words-to-file,$(PRIVATE_JAVA_SOURCES),$(dir $(PRIVATE_CLASS_INTERMEDIATES_DIR))/java-so… 1445 $(call dump-words-to-file,$(sort\ 1758 := $(wordlist 1,$(words $(LOCAL_PACKAGE_OVERRIDES)), $(LOCAL_PACKAGE_OVERRIDES))
|
D | droiddoc.mk | 110 $(call dump-words-to-file, $(2), $(1))
|
D | main.mk | 91 ifneq ($(words $(shell pwd)),1) 263 ifneq ($(words $(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS))),1)
|
D | config.mk | 138 ifneq ($(words $(board_config_mk)),1)
|
D | base_rules.mk | 399 ifneq ($(words $(LOCAL_INSTRUMENTATION_FOR)),1)
|
D | Makefile | 81 ifneq ($(words $(BUILD_FINGERPRINT)),1)
|
/build/core/tasks/ |
D | ide.mk | 28 ifneq ($(words $(eclipse_project_goals)),1)
|
/build/tools/droiddoc/src/ |
D | DroidDoc.java | 348 String[] words = line.split("\\s+", 2); in readKnownTagsFiles() local 349 if (words.length == 2) { in readKnownTagsFiles() 350 if (words[1].charAt(0) != '#') { in readKnownTagsFiles() 357 knownTags.add(words[0]); in readKnownTagsFiles()
|