Lines Matching full:records
228 // Puts the records within AngularJS scope
229 $scope.records = SkPDiffRecords.records;
232 // of records to apply the action to.
269 // Retrieve the records in the same order they are displayed.
270 var recordsInOrder = $parse("records | orderBy:sortingDiffer")($scope);
291 // Gather up all records that have the rebaseline set.
293 for (var recordIndex = 0; recordIndex < $scope.records.length; recordIndex++) {
294 if ($scope.records[recordIndex].isRebaselined) {
295 rebaselines.push($scope.records[recordIndex].testPath);