Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dmethodobject.h37 (((PyCFunctionObject *)func) -> m_ml -> ml_flags & METH_STATIC ? \
40 (((PyCFunctionObject *)func) -> m_ml -> ml_flags)
59 int ml_flags; /* Combination of METH_xxx flags, which mostly member
/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/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/
Dmoduleobject.c152 if ((fdef->ml_flags & METH_CLASS) || in _add_methods_to_object()
153 (fdef->ml_flags & METH_STATIC)) { in _add_methods_to_object()
Dcall.c461 int flags = method->ml_flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST); in _PyMethodDef_RawFastCallDict()
607 int flags = method->ml_flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST); in _PyMethodDef_RawFastCallKeywords()
Dtypeobject.c4782 !(meth->ml_flags & METH_COEXIST)) in add_methods()
4784 if (meth->ml_flags & METH_CLASS) { in add_methods()
4785 if (meth->ml_flags & METH_STATIC) { in add_methods()
4792 else if (meth->ml_flags & METH_STATIC) { 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/cpython3/Doc/c-api/
Dstructures.rst136 | :attr:`ml_flags` | int | flag bits indicating how the |
150 The :attr:`ml_flags` field is a bitfield which can include the following flags.
/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/extending/
Dnewtypes.rst252 int ml_flags; /* flags */
/external/python/cpython3/PC/bdist_wininst/
Dinstall.c371 int ml_flags; member
/external/python/cpython2/PC/bdist_wininst/
Dinstall.c343 int ml_flags; member
/external/python/cpython2/Doc/extending/
Dnewtypes.rst1179 int ml_flags; /* flags */
/external/python/cpython3/Modules/_decimal/
D_decimal.c5503 if (!(m->ml_flags & METH_NOARGS)) { in cfunc_noargs()