Home
last modified time | relevance | path

Searched refs:PyFrame_Check (Results 1 – 12 of 12) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dpyframe.h7 #define PyFrame_Check(op) Py_IS_TYPE((op), &PyFrame_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dpyframe.h7 #define PyFrame_Check(op) Py_IS_TYPE((op), &PyFrame_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dpyframe.h7 #define PyFrame_Check(op) Py_IS_TYPE((op), &PyFrame_Type) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dpyframe.h7 #define PyFrame_Check(op) Py_IS_TYPE((op), &PyFrame_Type) macro
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dpyframe.h7 #define PyFrame_Check(op) Py_IS_TYPE((op), &PyFrame_Type) macro
/aosp_15_r20/external/python/cpython2/Include/
Dframeobject.h57 #define PyFrame_Check(op) (Py_TYPE(op) == &PyFrame_Type) macro
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dframe.rst32 .. c:function:: int PyFrame_Check(PyObject *obj)
/aosp_15_r20/external/python/cpython2/Python/
Dtraceback.c88 frame == NULL || !PyFrame_Check(frame)) { in newtracebackobject()
/aosp_15_r20/external/python/cpython3/Modules/
D_testcapimodule.c5899 assert(PyFrame_Check(frame)); in test_tstate_capi()
5991 if (!PyFrame_Check(frame)) { in frame_getlocals()
6001 if (!PyFrame_Check(frame)) { in frame_getglobals()
6011 if (!PyFrame_Check(frame)) { in frame_getgenerator()
6021 if (!PyFrame_Check(frame)) { in frame_getbuiltins()
6031 if (!PyFrame_Check(frame)) { in frame_getlasti()
/aosp_15_r20/external/python/cpython3/Python/
Dtraceback.c49 frame == NULL || !PyFrame_Check(frame)) { in tb_create_raw()
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.11.0b4.rst1074 * :c:func:`PyFrame_Check`
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst2412 * :c:func:`PyFrame_Check`