Lines Matching refs:matches
138 matches = []
141 matches.append(obj)
142 return matches
238 matches = archive.find(object_name)
239 if matches:
240 for object in matches:
254 matches = archive.find(object_name)
255 if matches:
256 for object in matches:
346 matches = archive.find(options.object_name, options.mtime)
347 if matches:
350 if len(matches) == 1:
352 matches[0].save(path=options.outfile, overwrite=False)
358 for obj in matches:
403 def print_multiple_object_matches(result, object_name, mtime, matches): argument
407 for match in matches:
412 matches = archive.find(object_name, f=result)
413 if len(matches) > 0:
418 for match in matches:
527 matches = archive.find(object_name, dmap_mtime)
528 num_matches = len(matches)
531 obj = matches[0]
549 dmap_mtime, matches)