Searched refs:type_obj (Results 1 - 14 of 14) sorted by relevance

/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
H A Dpy-typeprint.py22 def recognize(self, type_obj):
23 if type_obj.tag == 'basic_string':
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
H A Dpy-typeprint.py23 def recognize(self, type_obj):
24 if type_obj.tag == "basic_string":
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
H A Dtypes.py160 def apply_type_recognizers(recognizers, type_obj):
165 result = r.recognize(type_obj)
/netbsd-current/external/gpl3/gdb/dist/gdb/python/lib/gdb/
H A Dtypes.py164 def apply_type_recognizers(recognizers, type_obj):
169 result = r.recognize(type_obj)
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/python/libstdcxx/v6/
H A Dprinters.py209 def get_template_arg_list(type_obj):
215 template_args.append(type_obj.template_argument(n))
2023 # self.type_obj = None
2025 def recognize(self, type_obj):
2027 If type_obj is a specialization of self.name that uses all the
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
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/python/libstdcxx/v6/
H A Dprinters.py194 def get_template_arg_list(type_obj):
200 template_args.append(type_obj.template_argument(n))
1647 # self.type_obj = None
1649 def recognize(self, type_obj):
1651 If type_obj is a specialization of self.name that uses all the
1657 if type_obj.tag is None:
1660 if not type_obj.tag.startswith(self.name):
1663 template_args = get_template_arg_list(type_obj)
1693 template_name = type_obj.tag[0:type_obj
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/python/
H A Dpy-utils.c359 PyTypeObject *type_obj = (PyTypeObject *) closure;
362 raw_ptr = (char *) self + type_obj->tp_dictoffset;
358 PyTypeObject *type_obj = (PyTypeObject *) closure; local
H A Dpy-type.c1364 type_object *type_obj;
1377 type_obj = PyObject_New (type_object, &type_object_type);
1378 if (type_obj)
1379 set_type (type_obj, type);
1381 return (PyObject *) type_obj;
1361 type_object *type_obj; local
H A Dpy-value.c152 PyObject *type_obj = nullptr; local
155 &val_obj, &type_obj))
160 if (type_obj != nullptr)
162 type = type_object_to_type (type_obj);
749 PyObject *type_obj, *result = NULL; local
752 if (! PyArg_ParseTuple (args, "O", &type_obj))
755 type = type_object_to_type (type_obj);
H A Dpython.c1503 gdbpy_ref<> type_obj (type_to_type_object (type));
1504 if (type_obj == NULL)
1527 type_obj.get (),
/netbsd-current/external/gpl3/gdb/dist/gdb/python/
H A Dpy-utils.c318 PyTypeObject *type_obj = (PyTypeObject *) closure;
321 raw_ptr = (char *) self + type_obj->tp_dictoffset;
317 PyTypeObject *type_obj = (PyTypeObject *) closure; local
H A Dpy-type.c1386 type_object *type_obj;
1399 type_obj = PyObject_New (type_object, &type_object_type);
1400 if (type_obj)
1401 set_type (type_obj, type);
1403 return (PyObject *) type_obj;
1383 type_object *type_obj; local
H A Dpy-value.c178 PyObject *type_obj = nullptr; local
181 &val_obj, &type_obj))
185 if (type_obj != nullptr && type_obj != Py_None)
187 type = type_object_to_type (type_obj);
788 PyObject *type_obj, *result = NULL; local
791 if (! PyArg_ParseTuple (args, "O", &type_obj))
794 type = type_object_to_type (type_obj);
H A Dpython.c1711 gdbpy_ref<> type_obj (type_to_type_object (type));
1712 if (type_obj == NULL)
1735 type_obj.get (),

Completed in 203 milliseconds