Lines Matching refs:match
127 def markup_func_ref_sphinx3(docname, app, match): argument
135 base_target = match.group(2)
136 target_text = nodes.Text(match.group(0))
170 def markup_c_ref(docname, app, match): argument
194 base_target = match.group(2)
195 target_text = nodes.Text(match.group(0))
205 if not (match.re == RE_function and target in Skipfuncs):
206 lit_text = nodes.literal(classes=['xref', 'c', class_str[match.re]])
209 reftype = reftype_str[match.re],
218 reftype_str[match.re], target, pxref,
232 def markup_doc_ref(docname, app, match): argument
237 absolute = match.group(1)
238 target = match.group(2)
260 return nodes.Text(match.group(0))
266 match = RE_namespace.search(l)
267 if match:
268 return match.group(1)