Home
last modified time | relevance | path

Searched refs:PyMethod_Type (Results 1 – 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dclassobject.h39 PyAPI_DATA(PyTypeObject) PyClass_Type, PyInstance_Type, PyMethod_Type;
43 #define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dclassobject.h39 PyAPI_DATA(PyTypeObject) PyClass_Type, PyInstance_Type, PyMethod_Type;
43 #define PyMethod_Check(op) ((op)->ob_type == &PyMethod_Type)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dclassobject.c2235 PyObject_INIT(im, &PyMethod_Type); in PyMethod_New()
2239 im = PyObject_GC_New(PyMethodObject, &PyMethod_Type); in PyMethod_New()
2609 PyTypeObject PyMethod_Type = { variable
Dobject.c2165 if (PyType_Ready(&PyMethod_Type) < 0) in _Py_ReadyTypes()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dclassobject.c2259 PyObject_INIT(im, &PyMethod_Type); in PyMethod_New()
2263 im = PyObject_GC_New(PyMethodObject, &PyMethod_Type); in PyMethod_New()
2633 PyTypeObject PyMethod_Type = { variable
Dobject.c2174 if (PyType_Ready(&PyMethod_Type) < 0) in _Py_ReadyTypes()