Home
last modified time | relevance | path

Searched refs:PyCFunctionObject (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Include/cpython/
Dmethodobject.h13 (((PyCFunctionObject *)func) -> m_ml -> ml_meth)
15 (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \
16 NULL : ((PyCFunctionObject *)func) -> m_self)
18 (((PyCFunctionObject *)func) -> m_ml -> ml_flags)
20 (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_METHOD ? \
30 } PyCFunctionObject; typedef
33 PyCFunctionObject func;
/third_party/python/Objects/
Dmethodobject.c78 PyCFunctionObject *op = NULL; in PyCMethod_New()
93 op = (PyCFunctionObject *)om; in PyCMethod_New()
101 op = PyObject_GC_New(PyCFunctionObject, &PyCFunction_Type); in PyCMethod_New()
161 meth_dealloc(PyCFunctionObject *m) in meth_dealloc()
180 meth_reduce(PyCFunctionObject *m, PyObject *Py_UNUSED(ignored)) in meth_reduce()
197 meth_get__text_signature__(PyCFunctionObject *m, void *closure) in meth_get__text_signature__()
203 meth_get__doc__(PyCFunctionObject *m, void *closure) in meth_get__doc__()
209 meth_get__name__(PyCFunctionObject *m, void *closure) in meth_get__name__()
215 meth_get__qualname__(PyCFunctionObject *m, void *closure) in meth_get__qualname__()
250 meth_traverse(PyCFunctionObject *m, visitproc visit, void *arg) in meth_traverse()
[all …]
Dabstract.c936 strcmp(((PyCFunctionObject *)v)->m_ml->ml_name, "print") == 0) in binary_op()
/third_party/python/Modules/
D_lsprof.c123 PyCFunctionObject *fn; in normalizeUserObj()
131 fn = (PyCFunctionObject *)obj; in normalizeUserObj()
435 ((PyCFunctionObject *)arg)->m_ml, in profiler_callback()
447 ((PyCFunctionObject *)arg)->m_ml); in profiler_callback()
/third_party/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2436 const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); in SWIG_Python_ConvertFunctionPtr()
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c2457 const char *doc = (((PyCFunctionObject *)obj) -> m_ml -> ml_doc); in SWIG_Python_ConvertFunctionPtr()
/third_party/python/Python/
Dceval.c5763 return ((PyCFunctionObject*)func)->m_ml->ml_name; in PyEval_GetFuncName()