Home
last modified time | relevance | path

Searched refs:PyMethod_GET_SELF (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/python/cpython3/Objects/
Dclassobject.c48 PyObject *self = PyMethod_GET_SELF(method); in method_vectorcall()
133 PyObject *funcself = PyMethod_GET_SELF(self); in method___reduce___impl()
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dclassobject.h33 #define PyMethod_GET_SELF(meth) \ macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dclassobject.h33 #define PyMethod_GET_SELF(meth) \ macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dclassobject.h33 #define PyMethod_GET_SELF(meth) \ macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dclassobject.h33 #define PyMethod_GET_SELF(meth) \ macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dclassobject.h33 #define PyMethod_GET_SELF(meth) \ macro
/aosp_15_r20/external/python/cpython2/Include/
Dclassobject.h71 #define PyMethod_GET_SELF(meth) \ macro
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dmethod.rst63 .. c:function:: PyObject* PyMethod_GET_SELF(PyObject *meth)
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dmethod.rst93 .. c:function:: PyObject* PyMethod_GET_SELF(PyObject *meth)
/aosp_15_r20/external/python/cpython2/Python/
Dceval.c3036 && PyMethod_GET_SELF(func) != NULL) { in PyEval_EvalFrameEx()
3037 PyObject *self = PyMethod_GET_SELF(func); in PyEval_EvalFrameEx()
4377 if (PyMethod_Check(func) && PyMethod_GET_SELF(func) != NULL) { in call_function()
4379 PyObject *self = PyMethod_GET_SELF(func); in call_function()
/aosp_15_r20/external/python/cpython2/Doc/data/
Drefcounts.dat749 PyMethod_GET_SELF:PyObject*::0:
750 PyMethod_GET_SELF:PyObject*:im:0:
/aosp_15_r20/external/python/cpython2/Objects/
Dclassobject.c2549 PyObject *self = PyMethod_GET_SELF(func); in instancemethod_call()
2611 if (PyMethod_GET_SELF(meth) != NULL) { in instancemethod_descr_get()
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat1317 PyMethod_GET_SELF:PyObject*::0:
1318 PyMethod_GET_SELF:PyObject*:im:0:
/aosp_15_r20/external/python/cpython3/Modules/
D_pickle.c399 if (PyMethod_Check(func) && PyMethod_GET_SELF(func) == self) { in init_method_ref()