Lines Matching refs:format
34 BASE_CONFIG_RE = re.compile(r'\b{}\b'.format(BASE_CONFIG_NAME))
36 BASE_CMAKE_CONFIG_RE = re.compile(r'\b{}\b'.format(BASE_CMAKE_CONFIG_NAME))
38 BASE_BUILD_DEFINE_RE = re.compile(r'\b{}\b'.format(BASE_BUILD_DEFINE_NAME))
40 CONFIG_RE = re.compile(r'//\s+{}:\s+(\w+),\s+([^,]+)(?:,\s+(.*))?$'.format(BASE_CONFIG_NAME))
60 …raise Exception('{} at {}:{} has unexpected property "{}"'.format(config_name, file_path, linenum,…
74 …logger.info('{} at {}:{} has non-integer min value "{}"'.format(config_name, file_path, linenum, c…
84 …logger.info('{} at {}:{} has non-integer max value "{}"'.format(config_name, file_path, linenum, c…
95 …logger.info('{} at {}:{} has non-integer default value "{}"'.format(config_name, file_path, linenu…
98 …raise Exception('{} at {}:{} has min {} > max {}'.format(config_name, file_path, linenum, config_a…
101 …raise Exception('{} at {}:{} has min {} > default {}'.format(config_name, file_path, linenum, conf…
104 …raise Exception('{} at {}:{} has default {} > max {}'.format(config_name, file_path, linenum, conf…
115 …logger.info('{} at {}:{} has non-integer default value "{}"'.format(config_name, file_path, linenu…
129 …'{} at {}:{} has default value {} which isn\'t in list of enumvalues {}'.format(config_name, file_…
131 …raise Exception("Found unknown {} type {} at {}:{}".format(BASE_CONFIG_NAME, _type, file_path, lin…
145 if "/{}/".format(chip) in dirpath:
155 …aise Exception("Found {} at {}:{} ({}) which isn't expected in {} files".format(BASE_CMAKE_CONFIG_…
157 …aise Exception("Found {} at {}:{} ({}) which isn't expected in {} files".format(BASE_BUILD_DEFINE_…
162 …logger.info("Possible misformatted {} at {}:{} ({})".format(BASE_CONFIG_NAME, file_path, linenum, …
164 …raise Exception("Found misformatted {} at {}:{} ({})".format(BASE_CONFIG_NAME, file_path, linenum,…
173 …e description was set to '{}' - has the description field been omitted?".format(config_name, file_…
176 …ception("Found description {} at {}:{} but it was already used at {}:{}".format(config_description…
190 …raise Exception('{} at {}:{} has malformed value {}'.format(config_name, file_path, linenum, item))
197 … raise Exception('{} at {}:{} has no group attribute'.format(config_name, file_path, linenum))
202 …raise Exception("Found {} at {}:{} but it was already declared at {}:{}".format(config_name, file_…
235 logger.warning("Potential unmarked PICO define {}".format(d))
261 …'Found {} at {}:{} with a default of {}, but #define says {} (at {}:{})'.format(config_name, file_…
263 …('Found {} at {}:{} with a default of {}, but no matching #define found'.format(config_name, file_…
270 …"Found 'host' config {} at {}:{}, but no matching non-host config found".format(config_name, file_…
281 …raise Exception("'{}' config {} at {}:{} also found at {}:{}".format(chip, config_name, chip_file_…
286 …return "'{}' {} mismatch at {}:{} ({}) and {}:{} ({})".format(name, thing, obj1_filepath, config_o…
308 …Exception(build_mismatch_exception_message(config_name, "attribute '{}'".format(attr), applicable_…
325 …writer.writerow({'name': config_name, 'location': '/{}:{}'.format(config_obj['filename'], config_o…