Lines Matching defs:out
50 # Out: subset of input list, where each item passes the predicate.
71 # Filter out a list of modules with a predicate function
75 # Out: subset of input list, where each item doesn't pass the predicate.
77 -ndk-mod-filter-out = $(strip \
82 -test-ndk-mod-filter-out = \
84 $(call test-expect,,$(call -ndk-mod-filter-out,,-local-func))\
85 $(call test-expect,,$(call -ndk-mod-filter-out,foo,-local-func))\
86 $(call test-expect,bar,$(call -ndk-mod-filter-out,foo bar,-local-func))\
87 $(call test-expect,aaa bar,$(call -ndk-mod-filter-out,aaa foo bar foo,-local-func))\
89 $(call test-expect,,$(call -ndk-mod-filter-out,,-local-func))\
90 $(call test-expect,foo,$(call -ndk-mod-filter-out,foo,-local-func))\
91 $(call test-expect,foo,$(call -ndk-mod-filter-out,foo bar,-local-func))\
92 $(call test-expect,foo foo,$(call -ndk-mod-filter-out,aaa foo bar foo,-local-func))
100 # Out: subset of input list.
187 $(eval _ndk_mod_depends := $$(filter-out $$(_ndk_mod_list),$$(_ndk_mod_depends)))
194 # Out: transitive closure of all modules from those in $1. Always includes
296 # Out: first node that has zero incoming edges, or empty.
297 -ndk-mod-topo-find-first-zero-incoming = $(firstword $(call -ndk-mod-filter-out,$1,-ndk-mod-topo-has-incoming))
346 $(eval _ndk_mod_nodes := $(filter-out $(_ndk_mod_module),$(_ndk_mod_nodes)))\