Home | History | Annotate | Download | only in sheriffing

Lines Matching refs:range

6  * Return the range of intersection between the two lists. Ranges are sets of
34 var range = testData[botName];
35 intersections.push([range, [botName]]);
38 range = testData[botName];
41 var intersect = rangeIntersection(intersections[j][0], range);
50 intersections.push([range, [botName]]);
96 var range = row.insertCell(-1);
97 range.className = 'failure-range';
102 'changelog.html?url=%2Ftrunk%2Fsrc&range=' +
104 range.innerHTML = '<a href="' + url + '">' + low + ' - ' + high + '</a>: ' +
150 var range = failure[3];
159 // If there's no range, that's all we know.
161 rangesByTest[key][botName] = range;
163 // Otherwise, track only the lowest range for this bot (we only want
164 // when it turned red, not the whole range that it's been red for).
165 if (range[0] < rangesByTest[key][botName][0]) {
166 rangesByTest[key][botName] = range;
181 'while, the range may be incorrect)';