Home | History | Annotate | Download | only in tools

Lines Matching refs:cov

21   The file paths printed by llvm-cov take the form:
89 cov, linenum, code = line.split('|', 2)
90 cov = cov.strip()
91 if cov:
92 cov = int(cov)
94 cov = None # We don't care about coverage for this line.
97 file_lines.append((linenum, cov, code.decode('utf-8', 'replace')))
157 for _, cov, _ in lines:
158 if cov is not None:
160 if cov > 0: