Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dfuncobject.c38 op->func_dict = NULL; in PyFunction_New()
191 if (op->func_dict == NULL) { in func_get_dict()
192 op->func_dict = PyDict_New(); in func_get_dict()
193 if (op->func_dict == NULL) in func_get_dict()
196 Py_INCREF(op->func_dict); in func_get_dict()
197 return op->func_dict; in func_get_dict()
219 tmp = op->func_dict; in func_set_dict()
221 op->func_dict = value; in func_set_dict()
460 Py_XDECREF(op->func_dict); in func_dealloc()
482 Py_VISIT(f->func_dict); in func_traverse()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dfuncobject.c38 op->func_dict = NULL; in PyFunction_New()
191 if (op->func_dict == NULL) { in func_get_dict()
192 op->func_dict = PyDict_New(); in func_get_dict()
193 if (op->func_dict == NULL) in func_get_dict()
196 Py_INCREF(op->func_dict); in func_get_dict()
197 return op->func_dict; in func_get_dict()
219 tmp = op->func_dict; in func_set_dict()
221 op->func_dict = value; in func_set_dict()
460 Py_XDECREF(op->func_dict); in func_dealloc()
482 Py_VISIT(f->func_dict); in func_traverse()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dfuncobject.h29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dfuncobject.h29 PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_funcattrs.py270 self.assertIs(d, self.b.func_dict)
279 self.assertEqual(self.b.func_dict['known_attr'], 7)
294 del self.b.func_dict