Home | History | Annotate | Download | only in code_coverage

Lines Matching refs:cov

85     exe = instr = cov = 0
91 cov += 1
96 lines_covered=cov,
100 if cov:
664 cov = Coverage()
669 cov.AddRoot(*root_opt.split('='))
671 cov.AddRoot(root_opt)
675 cov.ParseConfig(config_file, lcov_queue=options.inputs,
680 cov.ParseLcovFile(input_filename)
684 cov.AddFiles(add_path)
687 if not cov.files:
693 cov.UpdateTreeStats()
698 for f in sorted(cov.files):
699 covf = cov.files[f]
706 cov.PrintTree()
709 for ps_args in cov.print_stats:
710 cov.PrintStat(**ps_args)
714 html = croc_html.CrocHtml(cov, options.html_out, options.base_url)