Home
last modified time | relevance | path

Searched refs:subst (Results 1 – 25 of 27) sorted by relevance

12

/ndk/build/core/
Ddefinitions-host.mk45 …$(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)
Dsetup-abi.mk33 $(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)))
Dsetup-app.mk51 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))…
Dsetup-toolchain.mk92 … 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)))
Dsetup-imports.mk32 $(foreach __path,$(subst $(HOST_DIRSEP),$(space),$(NDK_MODULE_PATH)),\
Dadd-application.mk108 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)))
Dbuild-local.mk25 NDK_ROOT := $(subst \,/,$(NDK_ROOT))
82 $(eval __host_dir_node := $(patsubst %/,%,$(subst \,/,$1)))\
Dbuild-binary.mk373 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 ../,__/,\
Ddefinitions.mk1004 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 …]
Ddefinitions-utils.mk208 $(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/
Dsubstitution3 $description = "Test the subst and patsubst functions";
25 # Variable subst where a pattern matches multiple times in a single word.
Dandor10 NEQ = $(subst $1,,$2)
31 NEQ = $(subst $1,,$2)
Dif10 NEQ = \$(subst \$1,,\$2)
Dforeach26 fe = $(foreach var2, $(for_var),$(subst .c,.o, $(var2) ) )
/ndk/sources/host-tools/make-3.81/tests/scripts/features/
Dvarnesting11 ."y = \$(subst 1,2,\$(x))\n"
Dmult_targets18 print MAKEFILE "\t\@echo I am \$(subst output,,\$@)\n";
/ndk/build/gmsl/
D__gmsl292 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
406subst $$(__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/
DMAKE13 print MAKEFILE "MAKE := \$(subst X=\$(X),,\$(MAKE))\n\n";
/ndk/sources/android/support/src/musl-locale/
Diconv.c395 if (c > 0x7f) subst: x++, c='*'; in iconv()
412 goto subst; in iconv()
/ndk/sources/host-tools/make-3.81/
Dvariable.h127 extern char *subst_expand PARAMS ((char *o, char *text, char *subst, char *replace,
Dfunction.c77 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/
DAndroid.mk154 ifneq ($(TARGET_TOOLCHAIN),$(subst clang,,$(TARGET_TOOLCHAIN)))
/ndk/sources/host-tools/make-3.81/doc/
Dmake.info-12574 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 …]
Dmake.texi3050 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 …]
Dmake.info-22184 `$(subst FROM,TO,TEXT)'
4371 * subst <1>: Text Functions. (line 9)
4372 * subst: Multiple Targets. (line 28)

12