Lines Matching refs:capture
59 capture = proto_re.match(self.proto)
60 res['ret_type'] = capture.group(1)
61 res['ret_star'] = capture.group(2)
62 res['name'] = capture.group(3)
65 args = capture.group(4).split(', ')
67 capture = arg_re.match(a)
69 'type' : capture.group(1),
70 'star' : capture.group(5),
71 'name' : capture.group(6)
105 capture = p.match(self.line)
106 if not capture:
113 return capture.group(1)
124 capture = p.match(self.line)
125 if not capture:
128 return capture.group(1)
132 capture = p.match(self.line)
133 if not capture:
146 capture = p.match(self.line)
147 if capture:
148 desc += capture.group(1) + '\n'
155 capture = p.match(self.line)
156 if not capture:
169 capture = p.match(self.line)
170 if capture:
171 ret += capture.group(1) + '\n'