Lines Matching full:name
76 The 'FOO' will be saved into the name part of groupdict, and the 'val' will
79 pattern_set = re.compile('CONFIG_(?P<name>[A-Za-z|_|0-9]*)=(?P<val>\S+)')
80 pattern_not_set = re.compile('# CONFIG_(?P<name>[A-Za-z|_|0-9]*) is not set')
124 name, value and type. Then write the result into CMake and
137 name, cmake_type, cmake_val, header_val = '', '', '', ''
142 name = ret.groupdict()['name']
156 name = ret.groupdict()['name']
162 if name and not in_component_options:
164 format(name, cmake_val, cmake_type))
165 if name and in_component_options:
166 f_header.write('#define {:<45} {}\n'.format(name, header_val))
177 # dot_config has a fixed name. Do NOT rename it.