Lines Matching refs:capture
46 capture = proto_re.match(self.proto)
47 res['ret_type'] = capture.group(1)
48 res['ret_star'] = capture.group(2)
49 res['name'] = capture.group(3)
52 args = capture.group(4).split(', ')
54 capture = arg_re.match(a)
56 'type' : capture.group(1),
57 'star' : capture.group(5),
58 'name' : capture.group(6)
91 capture = p.match(self.line)
92 if not capture:
95 return capture.group(1)
99 capture = p.match(self.line)
100 if not capture:
113 capture = p.match(self.line)
114 if capture:
115 desc += capture.group(1) + '\n'
122 capture = p.match(self.line)
123 if not capture:
136 capture = p.match(self.line)
137 if capture:
138 ret += capture.group(1) + '\n'