Home | History | Annotate | Download | only in findit

Lines Matching refs:matches

25     matches, revision_info, revision_number, file_path, function,
31 matches: A matchset object, a map from CL to a match object.
46 with matches.matches_lock:
47 if revision_number in matches.cls_to_ignore:
51 if revision_number not in matches.matches:
55 match.ParseMessage(message, matches.codereview_api_url)
59 matches.cls_to_ignore.add(revision_number)
63 matches.cls_to_ignore.add(match.revert_of)
67 matches.matches[revision_number] = match
70 match = matches.matches[revision_number]
99 with matches.matches_lock:
139 Matches, a set of match objects.
141 matches = match_set.MatchSet(codereview_api_url)
177 'args':[matches, revision, cl, changed_file_path, functions,
185 matches.RemoveRevertedCLs()
187 return matches
212 matches = component_result.matches
217 for cl in matches:
218 match = matches[cl]
227 For each components to look for, create new thread that computes the matches
350 def SortAndFilterMatches(matches, num_important_frames=5):
354 matches: A list containing match results.
367 matches.sort(key=SortMatchesFunction)
368 # Iterate through the matches to find out what results are significant.
369 for stack_priority, cl, match in matches:
387 # - Current match does not change crashed lines but there are matches
389 # - Current match is not in crash state but there are matches in it.
390 # - There are other matches that came from higher priority stack.
408 def GenerateReasonForMatches(matches):
412 matches: A list of match objects.
414 # Iterate through the matches in the list.
415 for i, _, match in matches:
471 def CombineMatches(matches):
472 """Combine possible duplicates in matches.
475 matches: A list of matches object, along with its callstack priority and
478 A combined list of matches.
482 for stack_index, cl, match in matches:
485 # Iterate through the list of combined matches.
492 # If current match is not already in, add it to the list of matches.
517 It generates reasons for the matches and returns string representation