Lines Matching refs:match
140 def markup_func_ref_sphinx3(docname, app, match): argument
145 base_target = match.group(2)
146 target_text = nodes.Text(match.group(0))
181 def markup_c_ref(docname, app, match): argument
205 base_target = match.group(2)
206 target_text = nodes.Text(match.group(0))
216 if not (match.re == RE_function and target in Skipfuncs):
217 lit_text = nodes.literal(classes=['xref', 'c', class_str[match.re]])
220 reftype = reftype_str[match.re],
229 reftype_str[match.re], target, pxref,
243 def markup_doc_ref(docname, app, match): argument
248 absolute = match.group(1)
249 target = match.group(2)
271 return nodes.Text(match.group(0))
277 match = RE_namespace.search(l)
278 if match:
279 return match.group(1)
282 def markup_git(docname, app, match): argument
288 text = match.group(0)
289 rev = match.group('rev')