Searched refs:line_no (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-3.6.0/tools/mass_mfg/ |
D | mfg_gen.py | 36 def verify_values_exist(input_values_file, values_file_data, key_count_in_values_file, line_no=1): argument 41 % (str(input_values_file), str(line_no))) 49 for line_no, config_data in enumerate(config_file_data,1): 58 keys_missing.append([config_data_line[0], line_no]) 60 keys_missing.append([config_data_line[0], line_no]) 63 for key, line_no in keys_missing: 64 print('Key:`', str(key), '` at line no:', str(line_no), 74 line_no = 0 77 line_no += 1 83 % (str(input_config_file), str(line_no))) [all …]
|
/hal_espressif-3.6.0/components/partition_table/ |
D | gen_esp32part.py | 154 for line_no in range(len(lines)): 155 line = expand_vars(lines[line_no]).strip() 159 res.append(PartitionDefinition.from_csv(line, line_no + 1)) 161 raise InputError('Error at line %d: %s' % (line_no + 1, err)) 163 critical('Unexpected error parsing CSV line %d: %s' % (line_no + 1, line)) 175 % (e.line_no, e.offset, last_end)) 322 def from_csv(cls, line, line_no): argument 328 res.line_no = line_no
|
/hal_espressif-3.6.0/tools/ci/ |
D | check_build_warnings.py | 90 for line_no, line in enumerate(log_file): 95 line_no + 1))
|
D | check_codeowners.py | 113 errors.append('{}:{}: {}'.format(CODEOWNERS_PATH, line_no, msg)) 118 for line_no, line in enumerate(f, start=1):
|
/hal_espressif-3.6.0/components/efuse/ |
D | efuse_table_gen.py | 65 for line_no in range(len(lines)): 66 line = expand_vars(lines[line_no]).strip() 72 raise InputError('Error at line %d: %s' % (line_no + 1, e)) 74 critical('Unexpected error parsing line %d: %s' % (line_no + 1, line)) 93 raise InputError('Error at line %d: %s missing field name' % (line_no + 1, i))
|
/hal_espressif-3.6.0/tools/kconfig/ |
D | nconf.h | 87 const char *get_line(const char *text, int line_no);
|
D | nconf.gui.c | 189 const char *get_line(const char *text, int line_no) in get_line() argument 197 for (i = 0; text[i] != '\0' && lines < line_no; i++) in get_line()
|