Home | History | Annotate | Download | only in mapi

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:
173 cols = []
174 cols.append(func.return_type)
175 cols.append(name)
177 cols.extend([p.strip() for p in params.split(',')])
179 ent = ABIEntry(cols, attrs, func)
188 cols = [col.strip() for col in line.split(',')]
198 vals = cols[0].split(':')
213 cols[0] = vals[0]
215 return (attrs, cols)
226 attrs, cols = abi_parse_line(line)
247 ent = ABIEntry(cols, attrs)