Home | History | Annotate | Download | only in code_coverage

Lines Matching refs:lines

80     self.lines = {}     # line_no -> None=executable, 0=instrumented, 1=covered
84 """Updates the coverage summary based on covered lines."""
86 for l in self.lines.itervalues():
146 continue # Skip groups with no executable lines
328 lcov_data: An iterable returning lines of data in LCOV format. For
339 cov_lines = cov_file.lines
495 # Scan file to find potentially-executable lines
496 lines = self.scan_file(covf.local_path, covf.attrs.get('language'))
497 if lines:
498 for l in lines:
499 covf.lines[l] = None
502 # File has no executable lines, so don't count it
550 # Need to strip CR's from CRLF-terminated lines or posix systems can't
607 print 'Lines of code coverage by directory:'