Home | History | Annotate | Download | only in bench

Lines Matching full:revision

17     print '-d <dir> a directory containing bench_r<revision>_<scalar> files.'
22 print '-r <revision>[:<revision>] the revisions to show.'
23 print ' Negative <revision> is taken as offset from most recent revision.'
24 print '-f <revision>[:<revision>] the revisions to use for fitting.'
25 print ' Negative <revision> is taken as offset from most recent revision.'
71 """Returns the latest revision number found within this directory.
78 revision = int(file_name_match.group(1))
79 if revision > latest_revision_found:
80 latest_revision_found = revision
87 """Parses bench data from files like bench_r<revision>_<scalar>.
90 revision_data_points = {} # {revision : [BenchDataPoints]}
96 revision = int(file_name_match.group(1))
99 if (revision < oldest_revision or revision > newest_revision):
104 if (revision not in revision_data_points):
105 revision_data_points[revision] = []
107 revision_data_points[revision].extend(
114 """Convert revision data into sorted line data.
121 for revision in revisions:
122 for point in revision_data_points[revision]:
151 lines[line_name].append((revision, point.time))
230 Any revision numbers that are dependent on the latest revision number
486 <p>To highlight revision numbers, hold down SHIFT and mouse over
543 """Converts a revision difference to display width."""
546 """Converts a revision to a horizontal display position."""
588 document.getElementById('revision').firstChild.nodeValue = 'r' + id;
598 var revision = document.getElementById(id);
600 if (revision) {
601 previousRevisionFill = revision.getAttributeNS(null,'fill');
602 revision.setAttributeNS(null,'fill','rgb(100%, 95%, 95%)');
604 previousRevisionStroke = revision.getAttributeNS(null,'stroke');
605 revision.setAttributeNS(null,'stroke','rgb(100%, 90%, 90%)');
610 def print_rect(x, y, w, h, revision):
611 """Outputs a revision rectangle in display space,
612 taking arguments in revision space."""
619 print '<rect id=%s x=%s y=%s' % (qa(revision), qa(cx(x)), qa(disp_y),),
626 " highlightRevision('"+str(revision)+"');"
742 print '<text id="revision" x="0" y=%s style="' % qa(font_size*2)