Lines Matching refs:match
123 match = re.search(
127 if match:
130 (f.LocalPath(), match.group('type'))))
150 match = re.search(r"(?<!\\)(?P<quote>\")", contents[pos:])
151 return -1 if not match else match.start("quote") + pos
199 if re.match(w, contents[next:]):
215 match = re.search(r'namespace\s*cc\s*{', contents)
216 if match:
220 if FindNamespaceInBlock(match.end(), 'cc', contents, whitelist=whitelist):