Lines Matching refs:cols
51 def __init__(self, cols, attrs, xml_data = None):
52 self._parse(cols)
90 def _parse(self, cols):
91 ret = cols.pop(0)
95 name = cols.pop(0)
98 if not cols:
99 raise Exception(cols)
100 elif len(cols) == 1 and cols[0] == 'void':
103 for val in cols:
174 cols = []
175 cols.append(func.return_type)
176 cols.append(name)
178 cols.extend([p.strip() for p in params.split(',')])
180 ent = ABIEntry(cols, attrs, func)