Lines Matching refs:m
148 m = re.match(r'([^:]*): (.*)\Z', line)
149 if not m:
151 line_first = m.group(1)
152 line_second = m.group(2)
278 m = re.match(r'([^ ]+) ([^ ]+) ([^: ][^ ]* [^:]*) : (.*)\Z', line)
279 if not m:
281 auto_tests[m.group(1)][m.group(2)][m.group(3)] = m.group(4)
326 m = re.match(fp_cst_re, arg)
327 if m:
328 return '%s (%s)' % (macro, m.group(1))
477 m = re.match(r'([^:]*):(.*)\Z', flag)
478 if m:
479 f_name = m.group(1)
480 cond = convert_condition(m.group(2))
577 m = re.match(r'AUTO_TESTS_([^_]*)_([^_ ]*) *\(([^)]*)\),\Z',
579 if not m:
581 test_list.append(gen_auto_tests(auto_tests, m.group(1),
582 m.group(2), m.group(3)))
584 m = re.match(r'TEST_([^_]*)_([^_ ]*) *\((.*)\),\Z', line_strip)
585 if not m:
587 test_list.append(gen_test_line(m.group(1), m.group(2),
588 m.group(3)))