Home | History | Annotate | Download | only in command

Lines Matching refs:total

168     """Return a 2-tuple of number of enabled and total printers."""
170 total = 0
178 total += len(printer.subprinters)
182 total += 1
183 return (enabled, total)
187 """Return a 2-tuble of the enabled state and total number of all printers.
235 total = 0
246 total += 1
258 total += 1
274 total += 1
276 return total
283 total = 0
285 total += do_enable_pretty_printer_1(gdb.pretty_printers,
289 total += do_enable_pretty_printer_1(cp.pretty_printers,
293 total += do_enable_pretty_printer_1(objfile.pretty_printers,
300 print ("%d %s %s" % (total, pluralize("printer", total), state))
302 # Print the total list of printers currently enabled/disabled.