Home | History | Annotate | Download | only in CodeCoverage

Lines Matching full:lines

85     Parse one source file and return a list of lines
136 lines = open(f, "r").readlines()
137 results[f] = (len(lines), 0, "".join(lines))
144 # Our requirement is that we have the same amount of lines as
147 lines = open(cov_file, "r").readlines()
153 if len(lines) != len(base_gcov_lines):
154 print "Error Base: %s and Target: %s have different amount of lines" % (possible_gcovs[0],cov_file)
158 # and the same number of lines things might work out
161 for line in lines: