HomeSort by relevance Sort by last modified time
    Searched refs:total_lines (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebKitTools/CodeCoverage/
regenerate-coverage-display 86 def generate_header(file, last_time, total_lines, total_executed, path, image):
89 covered_lines = sumcov((total_lines, total_executed))
111 <td class="headerValue" width="20%%">%(total_lines)s</td>
127 def generate_table_item(file, name, total_lines, covered_lines):
128 covered_precise = (covered_lines*100.0)/(total_lines or 1.0)
140 <td class="%(numClass)s">%(covered_lines)s&nbsp;/&nbsp;%(total_lines)s&nbsp;lines</td>
204 (dir_files, total_lines, covered_lines,_) = dir_series[dir][-1]
205 generate_table_item(index, dir, total_lines, covered_lines)
356 # Rest of lines are path, total_lines, covered_lines
362 total_lines = int(total_lines_str
    [all...]
cov.py 53 # Rest of the rows: filename, total_lines, covered_lines
120 (total_lines, tested_lines, gcov_annotated_source)
179 (total_lines, total_covered) = (0, 0)
190 total_lines += 1
193 total_lines += 1
196 results[f] = (total_lines, total_covered, "".join(annotated_lines))

Completed in 738 milliseconds