Searched refs:type_obj (Results 1 – 8 of 8) sorted by relevance
| /netbsd/src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/ |
| D | py-typeprint.py | 23 def recognize(self, type_obj): argument 24 if type_obj.tag == "basic_string": 45 def recognize(self, type_obj): argument 46 if type_obj.tag == "Other":
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/ |
| D | printers.py | 209 def get_template_arg_list(type_obj): argument 215 template_args.append(type_obj.template_argument(n)) 2025 def recognize(self, type_obj): argument 2033 if type_obj.tag is None: 2036 if not type_obj.tag.startswith(self.name): 2039 template_args = get_template_arg_list(type_obj) 2069 template_name = type_obj.tag[0:type_obj.tag.find('<')] 2074 def _recognize_subtype(self, type_obj): argument 2078 if type_obj.code == gdb.TYPE_CODE_PTR: 2079 return self._recognize_subtype(type_obj.target()) + '*' [all …]
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/python/lib/gdb/ |
| D | types.py | 164 def apply_type_recognizers(recognizers, type_obj): argument 169 result = r.recognize(type_obj)
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/python/ |
| D | py-value.c | 188 PyObject *type_obj = nullptr; in valpy_init() local 191 &val_obj, &type_obj)) in valpy_init() 195 if (type_obj != nullptr && type_obj != Py_None) in valpy_init() 197 type = type_object_to_type (type_obj); in valpy_init() 838 PyObject *type_obj, *result = NULL; in valpy_do_cast() local 841 if (! PyArg_ParseTuple (args, "O", &type_obj)) in valpy_do_cast() 844 type = type_object_to_type (type_obj); in valpy_do_cast()
|
| D | py-utils.c | 320 PyTypeObject *type_obj = (PyTypeObject *) closure; in gdb_py_generic_dict() local 323 raw_ptr = (char *) self + type_obj->tp_dictoffset; in gdb_py_generic_dict()
|
| D | py-type.c | 1460 type_object *type_obj; in type_to_type_object() local 1473 type_obj = PyObject_New (type_object, &type_object_type); in type_to_type_object() 1474 if (type_obj) in type_to_type_object() 1475 set_type (type_obj, type); in type_to_type_object() 1477 return (PyObject *) type_obj; in type_to_type_object()
|
| D | python.c | 1900 gdbpy_ref<> type_obj (type_to_type_object (type)); in gdbpy_apply_type_printers() 1901 if (type_obj == NULL) in gdbpy_apply_type_printers() 1924 type_obj.get (), in gdbpy_apply_type_printers()
|
| /netbsd/src/external/gpl3/gdb/dist/gdb/doc/ |
| D | python.texi | 8318 @item apply_type_recognizers (recognizers, type_obj) 8320 @var{type_obj}. If any recognizer returns a string, return that
|