Lines Matching refs:checkers
350 help="""Loading external checkers using the clang plugin interface.""")
364 '--help-checkers',
366 help="""A default group of checkers is run unless explicitly disabled.
367 Exactly which checkers constitute the default group is a function of
370 '--help-checkers-verbose',
372 help="""Print all available checkers and mark the enabled ones.""")
493 def print_active_checkers(checkers):
494 """ Print active checkers to stdout. """
496 for name in sorted(name for name, (_, active) in checkers.items()
501 def print_checkers(checkers):
505 print('available checkers:')
507 for name in sorted(checkers.keys()):
508 description, active = checkers[name]