Home
last modified time | relevance | path

Searched refs:PyFunction_Check (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Objects/
Dfuncobject.c87 if (!PyFunction_Check(op)) { in PyFunction_GetCode()
97 if (!PyFunction_Check(op)) { in PyFunction_GetGlobals()
107 if (!PyFunction_Check(op)) { in PyFunction_GetModule()
117 if (!PyFunction_Check(op)) { in PyFunction_GetDefaults()
127 if (!PyFunction_Check(op)) { in PyFunction_SetDefaults()
147 if (!PyFunction_Check(op)) { in PyFunction_GetKwDefaults()
157 if (!PyFunction_Check(op)) { in PyFunction_SetKwDefaults()
178 if (!PyFunction_Check(op)) { in PyFunction_GetClosure()
188 if (!PyFunction_Check(op)) { in PyFunction_SetClosure()
210 if (!PyFunction_Check(op)) { in PyFunction_GetAnnotations()
[all …]
Dcall.c349 assert(PyFunction_Check(func)); in _PyFunction_Vectorcall()
Dtypeobject.c2712 if (tmp != NULL && PyFunction_Check(tmp)) { in type_new()
2729 if (tmp != NULL && PyFunction_Check(tmp)) { in type_new()
2744 if (tmp != NULL && PyFunction_Check(tmp)) { in type_new()
/third_party/python/Include/
Dfuncobject.h46 #define PyFunction_Check(op) Py_IS_TYPE(op, &PyFunction_Type) macro
/third_party/python/Doc/c-api/
Dfunction.rst26 .. c:function:: int PyFunction_Check(PyObject *o)
/third_party/python/Doc/data/
Drefcounts.dat906 PyFunction_Check:int:::
907 PyFunction_Check:PyObject*:o:0:
/third_party/python/Python/
Dbltinmodule.c115 if (!PyFunction_Check(func)) { in builtin___build_class__()
Dceval.c4970 else if (PyFunction_Check(func)) in PyEval_GetFuncName()
4983 else if (PyFunction_Check(func)) in PyEval_GetFuncDesc()