Searched refs:line_number (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-3.6.0/tools/ci/ |
D | check_kconfigs.py | 70 def __init__(self, path, line_number, error_msg, suggested_line): argument 71 super(InputError, self).__init__('{}:{}: {}'.format(path, line_number, error_msg)) 92 def process_line(self, line, line_number): argument 96 … raise InputError(self.path_in_idf, line_number, '"source" has to been followed by space', 103 …raise InputError(self.path_in_idf, line_number, 'only filenames starting with Kconfig.* can be sou… 111 def process_line(self, line, line_number): argument 119 e = InputError(self.path_in_idf, line_number, rule[1], line) 126 raise InputError(self.path_in_idf, line_number, '; '.join(errors), line) 252 def check_name_and_update_prefix(self, line, line_number): argument 259 raise InputError(self.path_in_idf, line_number, [all …]
|
/hal_espressif-3.6.0/tools/kconfig_new/ |
D | confgen.py | 76 ''.format(rep_path, line_number, string, self.config_prefix)) 80 for line_number, line in enumerate(f_rep, start=1): 86 … raise RuntimeError('Syntax error in {} (line {})'.format(rep_path, line_number)) 89 'replacement {} is defined'.format(rep_path, line_number,
|