Lines Matching refs:re
4 import os, sys, re, string, io
251 ll = re.split(r'\s*[,:]?\s*', l)
303 implmatch = re.match(r"(\(.*?\))\s*:\s*(\w+\(.*?\),?\s*)+", fdecl[apos:])
310 args0str = re.sub(r"\([^)]*\)", lambda m: m.group(0).replace(',', "@comma@"), args0str)
363 if bool(re.match(r".*\)\s*(const)?\s*=\s*0", decl_str)):
365 if bool(re.match(r".*\)\s*const(\s*=\s*0)?", decl_str)):
443 if bool(re.match(r'^(\w+::)*(?P<x>\w+)::~?(?P=x)$', decl_start)):
459 if bool(re.match('\w+\s+\(\*\w+\)\s*\(.*\)', decl_str)):
461 elif bool(re.match('\w+\s+\(\w+::\*\w+\)\s*\(.*\)', decl_str)):
463 elif bool(re.match('[A-Z_]+', decl_start)):
467 elif bool(re.match(r'\w+\s+\(\*\w+\)\[\d+\]', decl_str)):