Home
last modified time | relevance | path

Searched refs:PyCFunction_Type (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython3/Include/
Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type)
17 #define PyCFunction_Check(op) PyObject_TypeCheck(op, &PyCFunction_Type)
/external/python/cpython2/Include/
Dmethodobject.h14 PyAPI_DATA(PyTypeObject) PyCFunction_Type;
16 #define PyCFunction_Check(op) (Py_TYPE(op) == &PyCFunction_Type)
/external/python/cpython2/Objects/
Dmethodobject.c23 (void)PyObject_INIT(op, &PyCFunction_Type); in PyCFunction_NewEx()
27 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCFunction_NewEx()
281 PyTypeObject PyCFunction_Type = { variable
Dobject.c2176 if (PyType_Ready(&PyCFunction_Type) < 0) in _Py_ReadyTypes()
Dtypeobject.c6354 else if (Py_TYPE(descr) == &PyCFunction_Type &&
/external/python/cpython3/Objects/
Dmethodobject.c101 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCMethod_New()
333 PyTypeObject PyCFunction_Type = { variable
373 .tp_base = &PyCFunction_Type,
Dobject.c1791 INIT_TYPE(&PyCFunction_Type, "builtin function"); in _PyTypes_Init()
Dtypeobject.c7505 else if (Py_IS_TYPE(descr, &PyCFunction_Type) && in update_one_slot()
/external/python/cpython2/PC/os2vacpp/
Dpython.def8 PyCFunction_Type
/external/python/cpython3/PC/
Dpython3.def43 PyCFunction_Type=python39.PyCFunction_Type DATA
/external/python/cpython2/PC/os2emx/
Dpython27.def433 "PyCFunction_Type"
/external/python/cpython3/Tools/c-analyzer/
DTODO868 Objects/methodobject.c:PyCFunction_Type PyTypeObject PyCFunction_Type
Dknown.tsv809 Objects/methodobject.c - PyCFunction_Type variable PyTypeObject PyCFunction_Type
/external/python/cpython2/Modules/
DcPickle.c2754 if (type == &PyCFunction_Type) { in save()