Lines Matching +full:pass +full:- +full:through
15 pass
32 boot_results_fields = collections.OrderedDict([('total', 0), ('pass', 0), ('fail', 0)])
34 boot_results_fields = DotDict([('total', 0), ('pass', 0), ('fail', 0)])
38 boot_test_results.set_sum_fields(['total', 'pass', 'fail'])
40 boot_test_results.set_calc_fields(['total=pass+fail'])
47 boot_test_results.inc_row_field('BMC Power On', 'pass')
48 boot_test_results.inc_row_field('BMC Power Off', 'pass')
57 Boot Type Total Pass Fail
58 ----------------------------------- ----- ---- ----
123 calc_fields A string expression such as 'total=pass+fail'
145 # If we allow this, the row values get re-initialized.
197 self.__table[row_key][field_key] -= 1
205 # Walk through the rows of the table.
207 # Walk through the calc fields and process them.
212 if token in ("=", "+", "-", "*", "/"):
271 dash_format_string = "{0:-<" + str(key_width) + "}"
286 " {" + str(field_num) + ":->" + str(len(row_key)) + "}"
291 pass