Lines Matching refs:prefix
196 # omit this prefix by specifying 'STRIP_PREFIX' . This option has no
245 # The list has no prefix, so don't add it.
386 macro(get_property_and_add_prefix result target property prefix)
392 set(maybe_prefix ${prefix})
437 …# Remove the prefix (/home/sebo/zephyr/driver/serial/CMakeLists.txt => driver/serial/CMakeLists.tx…
1875 # import_kconfig(<prefix> <kconfig_fragment> [<keys>] [TARGET <target>])
1878 # introduce all the symbols that are prefixed with 'prefix' into the
1882 # <prefix> : symbol prefix of settings in the Kconfig fragment.
1888 function(import_kconfig prefix kconfig_fragment)
1898 if("${LINE}" MATCHES "^(${prefix}[^=]+)=([ymn]|.+$)")
1905 elseif("${LINE}" MATCHES "^# (${prefix}[^ ]+) is not set")
1912 # Note: we also ignore assignments which don't have the desired <prefix>.
2547 # can be specified by using shell-like quoting along with a 'SHELL:' prefix.
2548 # The 'SHELL:' prefix will be dropped before testing, so that
5423 # zephyr_check_arguments_required(<function_name> <prefix> <arg1> [<arg2> ...])
5425 macro(zephyr_check_arguments_required function prefix)
5427 zephyr_check_flags_required(${function} ${prefix} ${ARGN})
5439 # zephyr_check_arguments_required_allow_empty(<function_name> <prefix> <arg1> [<arg2> ...])
5441 macro(zephyr_check_arguments_required_allow_empty function prefix)
5444 zephyr_check_flags_required(${function} ${prefix} ${ARGN})
5457 # zephyr_check_flags_required(<function_name> <prefix> <flag1> [<flag2> ...])
5459 macro(zephyr_check_flags_required function prefix)
5462 if(${check_defined} ${prefix}_${required})
5464 elseif("${allow_empty}" AND ${required} IN_LIST ${prefix}_KEYWORDS_MISSING_VALUES)
5481 # zephyr_check_arguments_required_all(<function_name> <prefix> <arg1> [<arg2> ...])
5483 macro(zephyr_check_arguments_required_all function prefix)
5485 if(NOT DEFINED ${prefix}_${required})
5498 # zephyr_check_arguments_exclusive(<function_name> <prefix> <arg1> <arg2> [<arg3> ...])
5500 macro(zephyr_check_arguments_exclusive function prefix)
5502 zephyr_check_flags_exclusive(${function} ${prefix} ${ARGN})
5513 # zephyr_check_flags_exclusive(<function_name> <prefix> <flag1> <flag2> [<flag3> ...])
5515 macro(zephyr_check_flags_exclusive function prefix)
5518 if(${check_defined} ${prefix}_${arg})