/ndk/build/core/ |
D | definitions-host.mk | 45 …$(eval __host_rm_files := $(foreach __host_rm_file,$1,$(subst /,\,$(wildcard $(__host_rm_file)))))\ 60 …$(eval __host_rmdir_files := $(foreach __host_rmdir_file,$1,$(subst /,\,$(wildcard $(__host_rmdir_… 74 host-mkdir = md $(subst /,\,"$1") >NUL 2>NUL || rem 88 host-cp = copy /b/y $(subst /,\,"$1" "$2") > NUL 102 host-mv = move /y $(subst /,\,"$1" "$2") > NUL 117 host-install = copy /b/y $(subst /,\,"$1" "$2") > NUL 156 host-copy-if-differ = $(HOST_CMP) -s $1 $2 > NUL || copy /b/y $(subst /,\,"$1" "$2") > NUL 186 windows-path-is-absolute = $(if $(filter /% $(ndk-windows-drive-patterns),$(subst \,/,$1)),true)
|
D | setup-abi.mk | 33 $(eval TARGET_PLATFORM := $$(subst android-$(_plat),android-9,$$(TARGET_PLATFORM)))\ 40 $(eval TARGET_PLATFORM := $$(subst android-$(_plat),android-21,$$(TARGET_PLATFORM)))\ 44 TARGET_PLATFORM_LEVEL := $(strip $(subst android-,,$(TARGET_PLATFORM)))
|
D | setup-app.mk | 51 NDK_APP_ABI := $(subst $(comma),$(space),$(strip $(NDK_APP_ABI))) 102 … $(eval _unknown_abis := $(subst $(_abi),,$(subst bc$(_abi),,$(_unknown_abis)))) \ 108 …NDK_APP_ABI := $(subst $(_unknown_abis_prefix),$(filter-out $(NDK_KNOWN_ARCHS),$(NDK_FOUND_ARCHS))…
|
D | setup-toolchain.mk | 92 … TARGET_TOOLCHAIN_BASE := $(subst $(space),-,$(call chop,$(subst -,$(space),$(TARGET_TOOLCHAIN)))) 96 VERSION := $(subst clang,,$(NDK_TOOLCHAIN_VERSION)) 132 TOOLCHAIN_VERSION := $(call last,$(subst -,$(space),$(TARGET_TOOLCHAIN)))
|
D | setup-imports.mk | 32 $(foreach __path,$(subst $(HOST_DIRSEP),$(space),$(NDK_MODULE_PATH)),\
|
D | add-application.mk | 108 APP_PLATFORM_LEVEL := $(strip $(subst android-,,$(APP_PLATFORM))) 122 ifneq ($(strip $(subst android-,,$(APP_PLATFORM))),$(APP_PLATFORM_LEVEL)) 154 APP_PLATFORM_LEVEL := $(strip $(subst android-,,$(APP_PLATFORM))) 176 APP_ABI := $(subst $(comma),$(space),$(strip $(APP_ABI)))
|
D | build-local.mk | 25 NDK_ROOT := $(subst \,/,$(NDK_ROOT)) 82 $(eval __host_dir_node := $(patsubst %/,%,$(subst \,/,$1)))\
|
D | build-binary.mk | 373 LOCAL_OBJECTS := $(subst ../,__/,$(LOCAL_OBJECTS)) 374 LOCAL_OBJECTS := $(subst :,_,$(LOCAL_OBJECTS)) 382 LOCAL_RS_OBJECTS := $(subst ../,__/,$(LOCAL_RS_OBJECTS)) 383 LOCAL_RS_OBJECTS := $(subst :,_,$(LOCAL_RS_OBJECTS)) 425 $(subst ../,__/,\
|
D | definitions.mk | 1004 ifneq (1,$$(words $$(subst /, ,$$(LOCAL_MODULE_FILENAME)))) 1147 escape-colon-in-path = $(subst $(colon),$$(colon),$1) 1301 $(subst ../,__/,\ 1302 $(subst :,_,\ 1322 $(subst ../,__/,\ 1323 $(subst :,_,\ 1332 $(subst ../,__/,\ 1333 $(subst :,_,\ 1342 $(subst ../,__/,\ 1343 $(subst :,_,\ [all …]
|
D | definitions-utils.mk | 208 $(eval __lj_temp := $(subst $(space),x,$1))\ 209 $(foreach __lj_a,$(__gmsl_characters),$(eval __lj_temp := $$(subst $$(__lj_a),x,$(__lj_temp))))\
|
/ndk/sources/host-tools/make-3.81/tests/scripts/functions/ |
D | substitution | 3 $description = "Test the subst and patsubst functions"; 25 # Variable subst where a pattern matches multiple times in a single word.
|
D | andor | 10 NEQ = $(subst $1,,$2) 31 NEQ = $(subst $1,,$2)
|
D | if | 10 NEQ = \$(subst \$1,,\$2)
|
D | foreach | 26 fe = $(foreach var2, $(for_var),$(subst .c,.o, $(var2) ) )
|
/ndk/sources/host-tools/make-3.81/tests/scripts/features/ |
D | varnesting | 11 ."y = \$(subst 1,2,\$(x))\n"
|
D | mult_targets | 18 print MAKEFILE "\t\@echo I am \$(subst output,,\$@)\n";
|
/ndk/build/gmsl/ |
D | __gmsl | 292 seq = $(__gmsl_tr2)$(if $(filter-out xx,x$(subst $1,,$2)$(subst $2,,$1)x),$(false),$(true)) 309 split = $(__gmsl_tr2)$(strip $(subst $1, ,$2)) 335 $(subst $(word 1,$(subst :, ,$c)),$(word 2,$(subst :, ,$c)), \ 384 …__temp := $(subst $(__gmsl_space),x,$1))$(foreach a,$(__gmsl_characters),$(eval __temp := $$(subst… 406 …subst $$(__gmsl_space),� ,$$1))$(foreach a,$(__gmsl_characters),$(eval __temp := $$(subst $$a,$$a$… 614 int_max = $(__gmsl_tr2)$(subst xx,x,$(join $1,$2)) 615 int_min = $(__gmsl_tr2)$(subst xx,x,$(filter xx,$(join $1,$2))) 727 int_halve = $(__gmsl_tr1)$(strip $(subst xx,x,$(filter-out xy x y, \
|
/ndk/sources/host-tools/make-3.81/tests/scripts/variables/ |
D | MAKE | 13 print MAKEFILE "MAKE := \$(subst X=\$(X),,\$(MAKE))\n\n";
|
/ndk/sources/android/support/src/musl-locale/ |
D | iconv.c | 395 if (c > 0x7f) subst: x++, c='*'; in iconv() 412 goto subst; in iconv()
|
/ndk/sources/host-tools/make-3.81/ |
D | variable.h | 127 extern char *subst_expand PARAMS ((char *o, char *text, char *subst, char *replace,
|
D | function.c | 77 subst_expand (char *o, char *text, char *subst, char *replace, in subst_expand() argument 100 p = strstr (t, subst); in subst_expand() 120 o = variable_buffer_output (o, subst, slen); in subst_expand()
|
/ndk/sources/android/support/ |
D | Android.mk | 154 ifneq ($(TARGET_TOOLCHAIN),$(subst clang,,$(TARGET_TOOLCHAIN)))
|
/ndk/sources/host-tools/make-3.81/doc/ |
D | make.info-1 | 2574 generate text.g -$(subst output,,$@) > $@ 2586 for an explanation of the `subst' function. 4287 `subst' function (*note Functions for String Substitution and Analysis: 4292 y = $(subst 1,2,$(x)) 4298 works: `$($($(z)))' expands to `$($(y))' which becomes `$($(subst 5146 `$(subst a,b,$(x))', not `$(subst a,b,${x})'. This is because it is 5167 bar:= $(subst $(space),$(comma),$(foo)) 5170 Here the `subst' function replaces each space with a comma, through the 5181 `$(subst FROM,TO,TEXT)' 5186 $(subst ee,EE,feet on the street) [all …]
|
D | make.texi | 3050 generate text.g -$(subst output,,$@@) > $@@ 3053 @findex subst 3070 for an explanation of the @code{subst} function. 5215 For example, using the @code{subst} function 5222 y = $(subst 1,2,$(x)) 5232 @samp{$($(subst 1,2,$(x)))}. This gets the value @samp{variable1} from 6243 @w{@samp{$(subst a,b,$(x))}}, not @w{@samp{$(subst a,b,$@{x@})}}. This 6265 bar:= $(subst $(space),$(comma),$(foo)) 6271 Here the @code{subst} function replaces each space with a comma, through 6281 @item $(subst @var{from},@var{to},@var{text}) [all …]
|
D | make.info-2 | 2184 `$(subst FROM,TO,TEXT)' 4371 * subst <1>: Text Functions. (line 9) 4372 * subst: Multiple Targets. (line 28)
|