Lines Matching refs:result
19 set keeps result Records for each image and block size tested, that store the
36 An enumeration of test result status values.
53 An result summary data container, storing number of results of each type.
67 Create a new result summary.
110 Get the worst result in this set.
113 Result: The worst test result.
130 result = ["\nSet Status: %s (Pass: %u | Warn: %u | Fail: %u)" % dat]
135 result.append("\nTotal speed: Mean: %+0.3f x Std: %0.2f x" % dat)
138 result.append("Coding speed: Mean: %+0.3f x Std: %0.2f x" % dat)
141 result.append("Quality diff: Mean: %+0.3f dB Std: %0.2f dB" % dat)
144 result.append("Coding time: Mean: %+0.3f s Std: %0.2f s" % dat)
147 result.append("Quality: Mean: %+0.3f dB Std: %0.2f dB" % dat)
149 return "\n".join(result)
154 A single result record, sotring results for a singel image and block size.
168 Create a result record, initially in the NOTRUN status.
195 def set_status(self, result):
197 Set the result status.
200 result (Result): The test result.
202 self.status = result
229 Add a new test record to this result set.
246 Record: The test result, if present.
265 other (Record): The pattern result record to match.
268 Record: The result, if present.
281 Get a results summary of all the records in this result set.
284 ResultSummary: The result summary.
294 Save this result set to a CSV file.
340 Load a reference result set from a CSV file on disk.