Home
last modified time | relevance | path

Searched refs:ml_flags (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython3/Include/cpython/
Dmethodobject.h15 (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \
18 (((PyCFunctionObject *)func) -> m_ml -> ml_flags)
20 (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_METHOD ? \
/external/python/cpython2/Include/
Dmethodobject.h34 (((PyCFunctionObject *)func) -> m_ml -> ml_flags)
40 int ml_flags; /* Combination of METH_xxx flags, which mostly member
/external/python/cpython3/Include/
Dmethodobject.h38 int ml_flags; /* Combination of METH_xxx flags, which mostly member
/external/python/cpython2/Python/
Dmodsupport.c73 if ((ml->ml_flags & METH_CLASS) || in Py_InitModule4()
74 (ml->ml_flags & METH_STATIC)) { in Py_InitModule4()
/external/python/cpython3/Objects/
Dmethodobject.c48 switch (ml->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS | in PyCMethod_New()
80 if (ml->ml_flags & METH_METHOD) { in PyCMethod_New()
Dmoduleobject.c144 if ((fdef->ml_flags & METH_CLASS) || in _add_methods_to_object()
145 (fdef->ml_flags & METH_STATIC)) { in _add_methods_to_object()
Ddescrobject.c131 if (descr->d_method->ml_flags & METH_METHOD) { in classmethod_get()
144 if (descr->d_method->ml_flags & METH_METHOD) { in method_get()
907 switch (method->ml_flags & (METH_VARARGS | METH_FASTCALL | METH_NOARGS | in PyDescr_NewMethod()
Dtypeobject.c4983 if (meth->ml_flags & METH_CLASS) { in add_methods()
4984 if (meth->ml_flags & METH_STATIC) { in add_methods()
4991 else if (meth->ml_flags & METH_STATIC) { in add_methods()
5016 if (!(meth->ml_flags & METH_COEXIST)) { in add_methods()
/external/python/cpython2/Objects/
Dmethodobject.c67 return ((PyCFunctionObject *)op) -> m_ml -> ml_flags; in PyCFunction_GetFlags()
Dtypeobject.c3735 !(meth->ml_flags & METH_COEXIST))
3737 if (meth->ml_flags & METH_CLASS) {
3738 if (meth->ml_flags & METH_STATIC) {
3745 else if (meth->ml_flags & METH_STATIC) {
/external/python/cpython2/Doc/c-api/
Dstructures.rst145 | :attr:`ml_flags` | int | flag bits indicating how the |
159 The :attr:`ml_flags` field is a bitfield which can include the following flags.
/external/python/cpython3/Doc/c-api/
Dstructures.rst215 | :attr:`ml_flags` | int | flag bits indicating how the |
229 The :attr:`ml_flags` field is a bitfield which can include the following flags.
/external/python/cffi/c/
Dlib_obj.c181 xfunc->md.ml_flags = flags; in lib_build_cpython_func()
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_platform_limits_netbsd.h71 int ml_flags; member
Dsanitizer_platform_limits_netbsd.cpp2697 CHECK_SIZE_AND_OFFSET(modctl_load_t, ml_flags);
/external/python/cpython2/PC/bdist_wininst/
Dinstall.c343 int ml_flags; member
/external/python/cpython3/PC/bdist_wininst/
Dinstall.c371 int ml_flags; member
/external/python/cpython3/Doc/extending/
Dnewtypes.rst254 int ml_flags; /* flags */
/external/python/pybind11/include/pybind11/
Dpybind11.h398 rec->def->ml_flags = METH_VARARGS | METH_KEYWORDS; in PYBIND11_NAMESPACE_BEGIN()
/external/python/cpython3/Modules/_decimal/
D_decimal.c5641 if (!(m->ml_flags & METH_NOARGS)) { in cfunc_noargs()
/external/python/cpython2/Doc/extending/
Dnewtypes.rst1179 int ml_flags; /* flags */