Lines Matching refs:e
85 except InputError as e:
86 raise InputError('Error at line %d: %s' % (line_no + 1, e))
93 for e in res:
94 if last_efuse_block != e.efuse_block:
96 if e.bit_start is None:
97 e.bit_start = last_end
98 last_end = e.bit_start + e.bit_count
99 last_efuse_block = e.efuse_block
105 for e in res:
106 if e.field_name == '' and last_field is None:
107 raise InputError('Error at line %d: %s missing field name' % (line_no + 1, e))
108 elif e.field_name == '' and last_field is not None:
109 e.field_name = last_field.field_name
110 last_field = e
510 def __init__(self, e): argument
511 super(InputError, self).__init__(e)
522 except InputError as e:
523 print(e, file=sys.stderr)