| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/command/ |
| type_printers.py | 32 def list_type_printers(self, type_printers): 36 sorted_type_printers = sorted(copy.copy(type_printers), key=lambda x: x.name) 48 if objfile.type_printers: 50 self.list_type_printers(objfile.type_printers) 52 if gdb.current_progspace().type_printers: 54 self.list_type_printers(gdb.current_progspace().type_printers) 56 if gdb.type_printers: 58 self.list_type_printers(gdb.type_printers) 79 if self.set_some(name, objfile.type_printers): 81 if self.set_some(name, gdb.current_progspace().type_printers) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/command/ |
| type_printers.py | 32 def list_type_printers(self, type_printers): 36 sorted_type_printers = sorted(copy.copy(type_printers), key=lambda x: x.name) 48 if objfile.type_printers: 50 self.list_type_printers(objfile.type_printers) 52 if gdb.current_progspace().type_printers: 54 self.list_type_printers(gdb.current_progspace().type_printers) 56 if gdb.type_printers: 58 self.list_type_printers(gdb.type_printers) 79 if self.set_some(name, objfile.type_printers): 81 if self.set_some(name, gdb.current_progspace().type_printers) [all...] |
| /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/ |
| types.py | 155 _get_some_type_recognizers(result, objfile.type_printers) 157 _get_some_type_recognizers(result, gdb.current_progspace().type_printers) 159 _get_some_type_recognizers(result, gdb.type_printers) 183 locus.type_printers.insert(0, printer)
|
| __init__.py | 83 type_printers = [] variable
|
| /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/ |
| types.py | 155 _get_some_type_recognizers(result, objfile.type_printers) 157 _get_some_type_recognizers(result, gdb.current_progspace().type_printers) 159 _get_some_type_recognizers(result, gdb.type_printers) 183 locus.type_printers.insert(0, printer)
|
| __init__.py | 83 type_printers = [] variable
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| py-typeprint.py | 38 gdb.type_printers.append(StringTypePrinter())
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/ |
| py-typeprint.py | 38 gdb.type_printers.append(StringTypePrinter())
|
| /src/external/gpl3/gdb/dist/gdb/python/ |
| py-progspace.c | 53 PyObject *type_printers; member in struct:pspace_object 167 Py_XDECREF (ps_self->type_printers); 197 self->type_printers = PyList_New (0); 198 if (self->type_printers == NULL) 327 /* Get the 'type_printers' attribute. */ 334 Py_INCREF (self->type_printers); 335 return self->type_printers; 390 /* Set the 'type_printers' attribute. */ 400 "cannot delete the type_printers attribute"); 407 "the type_printers attribute must be a list") [all...] |
| py-objfile.c | 50 PyObject *type_printers; member in struct:objfile_object 201 Py_XDECREF (self->type_printers); 230 self->type_printers = PyList_New (0); 231 if (self->type_printers == NULL) 370 /* Get the 'type_printers' attribute. */ 377 Py_INCREF (self->type_printers); 378 return self->type_printers; 392 /* Set the 'type_printers' attribute. */ 402 _("Cannot delete the type_printers attribute.")); 409 _("The type_printers attribute must be a list.")) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/python/ |
| py-progspace.c | 53 PyObject *type_printers; member in struct:pspace_object 167 Py_XDECREF (ps_self->type_printers); 197 self->type_printers = PyList_New (0); 198 if (self->type_printers == NULL) 327 /* Get the 'type_printers' attribute. */ 334 Py_INCREF (self->type_printers); 335 return self->type_printers; 390 /* Set the 'type_printers' attribute. */ 400 "cannot delete the type_printers attribute"); 407 "the type_printers attribute must be a list") [all...] |
| py-objfile.c | 50 PyObject *type_printers; member in struct:objfile_object 201 Py_XDECREF (self->type_printers); 230 self->type_printers = PyList_New (0); 231 if (self->type_printers == NULL) 370 /* Get the 'type_printers' attribute. */ 377 Py_INCREF (self->type_printers); 378 return self->type_printers; 392 /* Set the 'type_printers' attribute. */ 402 _("Cannot delete the type_printers attribute.")); 409 _("The type_printers attribute must be a list.")) [all...] |