Home
last modified time | relevance | path

Searched refs:match_result (Results 1 – 3 of 3) sorted by relevance

/external/webkit/WebKitTools/Scripts/
Dvalidate-committer-lists169 match_result = line_regexp.match(output_line)
170 if not match_result:
172 last_commit_dates[match_result.group('author')] = float(match_result.group('timestamp'))
/external/bluetooth/glib/glib/
Dgtestutils.c1763 gboolean match_result = 0 == (assertion_flags & 1); in g_test_trap_assertions() local
1766 const char *match_error = match_result ? "failed to match" : "contains invalid match"; in g_test_trap_assertions()
1781 …if (stdout_pattern && match_result == !g_pattern_match_simple (stdout_pattern, test_trap_last_stdo… in g_test_trap_assertions()
1787 …if (stderr_pattern && match_result == !g_pattern_match_simple (stderr_pattern, test_trap_last_stde… in g_test_trap_assertions()
/external/webkit/WebKitTools/Scripts/webkitpy/style/processors/
Dcpp.py1137 match_result = match(regexp, line)
1138 if match_result:
1141 function_name = match_result.group(1).split()[-1]