Lines Matching refs:match
99 match = re.match(msg_start_re, line)100 if match:101 msg_start = match.group(1)103 match = re.match(msg_def_re, line)104 if match:105 msg_name = match.group(1)126 match = re.search(unknown_msg_re, line)127 if match:129 _ResolveMsg(int(match.group(1)), msg_map),