Home | History | Annotate | Download | only in command

Lines Matching refs:printers

20 """GDB commands for working with type-printers."""
23 """GDB command to list all registered type-printers.
25 Usage: info type-printers
29 super(InfoTypePrinter, self).__init__("info type-printers",
33 """Print a list of type printers."""
34 # A potential enhancement is to provide an option to list printers in
50 print ("%sType printers for %s:" % (sep, objfile.name))
54 print ("%sType printers for program space:" % sep)
58 print ("%sGlobal type printers:" % sep)
66 def set_some(self, name, printers):
68 for p in printers:
88 def add_some(self, result, word, printers):
89 for p in printers: