Home | History | Annotate | Download | only in wahoo

Lines Matching defs:in

22 # $(call find-word-in-list,w,wlist)
23 # finds an exact match of word w in word list wlist
28 # search word w in list wl, if found match m, return stripped word w
31 define find-word-in-list
40 # $(call match-word-in-list,w,wlist)
41 # does an exact match of word w in word list wlist
44 # return output of an exact match of word w in wordlist wlist
48 define match-word-in-list
51 $(call match-word,$(call find-word-in-list,$(1),$(2)),$(strip $(1))), \
57 # matches prefix p in wlist using delimiter delim
60 # trim the words in wlist w
61 # if find-word-in-list returns not empty
70 $(if $(call match-word-in-list,$(1),$(text)),true,) \
96 # $(call is-board-platform-in-list,bpl)
98 define is-board-platform-in-list
99 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),$(1))
106 $(call match-word-in-list,$(TARGET_BOARD_PLATFORM),\
112 # $(call is-chipset-in-board-platform,chipset)
113 # does a prefix match of chipset in TARGET_BOARD_PLATFORM
117 define is-chipset-in-board-platform
121 # $(call is-chipset-prefix-in-board-platform,prefix)
122 # does a chipset prefix match in TARGET_BOARD_PLATFORM
126 # if ($(prefix)_ or $(prefix)a match in board platform)
131 define is-chipset-prefix-in-board-platform
175 $(call match-word-in-list,$(PLATFORM_SDK_VERSION),$($(1)_SDK_VERSIONS)), \
181 # $(call is-android-codename-in-list,cnlist)
183 define is-android-codename-in-list
191 match-word-in-list,\