Home
last modified time | relevance | path

Searched refs:type_obj (Results 1 – 5 of 5) sorted by relevance

/dragonfly/contrib/gdb-7/gdb/python/lib/gdb/
H A Dtypes.py158 def apply_type_recognizers(recognizers, type_obj): argument
163 result = r.recognize(type_obj)
/dragonfly/contrib/gdb-7/gdb/python/
H A Dpy-utils.c396 PyTypeObject *type_obj = closure; in gdb_py_generic_dict() local
399 raw_ptr = (char *) self + type_obj->tp_dictoffset; in gdb_py_generic_dict()
H A Dpython.c1253 PyObject *type_obj, *type_module, *func, *result_obj; in apply_type_printers() local
1262 type_obj = type_to_type_object (type); in apply_type_printers()
1263 if (type_obj == NULL) in apply_type_printers()
1268 make_cleanup_py_decref (type_obj); in apply_type_printers()
1287 type_obj, (char *) NULL); in apply_type_printers()
H A Dpy-type.c1482 type_object *type_obj; in type_to_type_object() local
1484 type_obj = PyObject_New (type_object, &type_object_type); in type_to_type_object()
1485 if (type_obj) in type_to_type_object()
1486 set_type (type_obj, type); in type_to_type_object()
1488 return (PyObject *) type_obj; in type_to_type_object()
H A Dpy-value.c436 PyObject *type_obj, *result = NULL; in valpy_do_cast() local
440 if (! PyArg_ParseTuple (args, "O", &type_obj)) in valpy_do_cast()
443 type = type_object_to_type (type_obj); in valpy_do_cast()