Home
last modified time | relevance | path

Searched refs:PyCFunction_CheckExact (Results 1 – 9 of 9) sorted by relevance

/aosp_15_r20/external/python/cpython3/Include/
Dmethodobject.h16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dmethodobject.h16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dmethodobject.h16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dmethodobject.h16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dmethodobject.h16 #define PyCFunction_CheckExact(op) Py_IS_TYPE(op, &PyCFunction_Type) macro
/aosp_15_r20/external/python/cpython3/Python/
Dspecialize.c1592 if (PyCFunction_CheckExact(callable)) { in call_fail_kind()
1637 if (PyCFunction_CheckExact(callable)) { in _Py_Specialize_Precall()
Dceval.c5014 DEOPT_IF(!PyCFunction_CheckExact(callable), PRECALL);
5047 DEOPT_IF(!PyCFunction_CheckExact(callable), PRECALL);
5086 DEOPT_IF(!PyCFunction_CheckExact(callable), PRECALL);
7292 if (PyCFunction_CheckExact(func) || PyCMethod_CheckExact(func)) {
7328 if (PyCFunction_CheckExact(func) || PyCMethod_CheckExact(func)) {
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.9.0b1.rst866 Add PyCFunction_CheckExact() macro for exact type checks now that we allow
/aosp_15_r20/external/python/cpython3/Objects/
Dabstract.c937 PyCFunction_CheckExact(v) && in binary_op()