Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dfuncobject.c104 if (!PyFunction_Check(op)) { in PyFunction_GetCode()
114 if (!PyFunction_Check(op)) { in PyFunction_GetGlobals()
124 if (!PyFunction_Check(op)) { in PyFunction_GetModule()
134 if (!PyFunction_Check(op)) { in PyFunction_GetDefaults()
144 if (!PyFunction_Check(op)) { in PyFunction_SetDefaults()
164 if (!PyFunction_Check(op)) { in PyFunction_GetKwDefaults()
174 if (!PyFunction_Check(op)) { in PyFunction_SetKwDefaults()
195 if (!PyFunction_Check(op)) { in PyFunction_GetClosure()
205 if (!PyFunction_Check(op)) { in PyFunction_SetClosure()
258 if (!PyFunction_Check(op)) { in PyFunction_GetAnnotations()
[all …]
Dcall.c335 assert(PyFunction_Check(func)); in _PyFunction_Vectorcall()
Dtypeobject.c2905 if (!PyFunction_Check(func)) { in type_new_staticmethod()
2932 if (!PyFunction_Check(func)) { in type_new_classmethod()
/third_party/python/Include/
Dfuncobject.h55 #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.c119 if (!PyFunction_Check(func)) { in builtin___build_class__()
Dceval.c5760 else if (PyFunction_Check(func)) in PyEval_GetFuncName()
5773 else if (PyFunction_Check(func)) in PyEval_GetFuncDesc()