Lines Matching refs:cols
26 def __init__(self, cols=None): argument
27 if cols:
29 [x.strip() for x in cols])
37 def Setup(self, cols): argument
38 self.bits, self.attr, self.reset_val = cols[0:3]
39 if len(cols) > 3:
40 self.desc.append(cols[3])
148 cols = re.split(' *', line, 3)
149 if leading > 15 or (len(cols) > 3 and is_field_start(cols[3])):
154 if cols[0] == 'Bit' or len(cols) < 3:
159 field.Setup(cols)