Lines Matching refs:cols
47 def __init__(self, cols, attrs):
48 self._parse(cols)
85 def _parse(self, cols):
86 ret = cols.pop(0)
90 name = cols.pop(0)
93 if not cols:
94 raise Exception(cols)
95 elif len(cols) == 1 and cols[0] == 'void':
98 for val in cols:
172 cols = []
173 cols.append(func.return_type)
174 cols.append(name)
176 cols.extend([p.strip() for p in params.split(',')])
178 ent = ABIEntry(cols, attrs)
187 cols = [col.strip() for col in line.split(',')]
197 vals = cols[0].split(':')
212 cols[0] = vals[0]
214 return (attrs, cols)
225 attrs, cols = abi_parse_line(line)
246 ent = ABIEntry(cols, attrs)