Lines Matching refs:match
111 if re.match(r'^[A-Z_]{3,}\s*$', l):
300 if re.match(r'\s*(#|\[|struct)', l):
304 elif re.match(r'[Ll]ink with', l):
334 match = re.match(r'(.*?)([\w\d]*) ?\((.*)\)', fp)
337 print(match.groups(), file=sys.stderr)
341 funcdef.text = match.group(1)
343 function.text = match.group(2)
345 if match.group(3).strip() == 'void':
349 for p in re.split(r',(?![^()]*\))', match.group(3)):
362 match2 = re.match(r'(.*)<\[(.*)\]>(.*)', p)
484 match = re.search(r'(?<!@)@[^@\s]+', s)
485 if match:
486 sys.exit("texinfo command '%s' remains in output" % match.group(0))