Lines Matching refs:match
60 def markup_namespace(match):
63 namespace = match.group(1)
71 def markup_macro(match):
72 return ".. c:function:: " + match.group(1) + ' ' + match.group(2)
80 def markup_ctype(match):
81 return ".. c:type:: " + match.group(2)
88 def markup_ctype_refs(match):
89 return ":c:type:`" + match.group(2) + '`'
95 def markup_c_expr(match):
96 return '\\ ``' + match.group(2) + '``\\ '
163 m = c_funcptr_sig_re.match(sig)
165 m = c_sig_re.match(sig)
167 raise ValueError('no match')