Lines Matching refs:match
110 if re_preproc_line.match(line):
125 match = None
134 match = re_map_entry.match(entries_str[:i + 2])
137 if not match:
142 line = match.group(0)
143 qstr = match.group(1)
196 match = re_mp_obj_dict_t.match(line)
197 if match is None:
198 match = re_mp_map_t.match(line)
199 if match is None:
204 line = match.group('head') + '0' + match.group('tail') + '\n'
207 return (match.group('id'),) + stats
217 if re_mp_rom_map_elem_t.match(line):