Lines Matching refs:cols
49 def __init__(self, cols, attrs, xml_data = None):
50 self._parse(cols)
88 def _parse(self, cols):
89 ret = cols.pop(0)
93 name = cols.pop(0)
96 if not cols:
97 raise Exception(cols)
98 elif len(cols) == 1 and cols[0] == 'void':
101 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, func)