Lines Matching refs:match
57 is a protoc-generated file. If a single match is found, it is returned.
61 match = protobuf_filename_re.match(filename)
62 if not match:
64 basename = match.groups(0)
88 match = symbol_code_name_re.match(symbol)
89 if not match:
91 symbol = match.group(1)
108 match = nm_re.match(line)
109 if match:
110 addr, size, filename = match.groups()
154 match = disassembly_re.search(line)
155 if match:
156 (ref,) = match.groups()