Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dcode.h65 PyAPI_DATA(PyTypeObject) PyCode_Type;
67 #define PyCode_Check(op) (Py_TYPE(op) == &PyCode_Type)
/external/python/cpython3/Include/
Dcode.h98 PyAPI_DATA(PyTypeObject) PyCode_Type;
100 #define PyCode_Check(op) (Py_TYPE(op) == &PyCode_Type)
/external/python/cpython3/Objects/clinic/
Dfuncobject.c.h39 &PyCode_Type, &code, &PyDict_Type, &globals, &name, &defaults, &closure)) { in func_new()
/external/python/cpython3/Doc/c-api/
Dcode.rst22 .. c:var:: PyTypeObject PyCode_Type
/external/python/cpython2/Doc/c-api/
Dcode.rst22 .. c:var:: PyTypeObject PyCode_Type
/external/python/cpython2/Objects/
Dcodeobject.c120 co = PyObject_NEW(PyCodeObject, &PyCode_Type); in PyCode_New()
653 PyTypeObject PyCode_Type = { variable
Dfuncobject.c377 &PyCode_Type, &code, in func_new()
Dobject.c2170 if (PyType_Ready(&PyCode_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython2/PC/os2vacpp/
Dpython.def12 PyCode_Type
/external/python/cpython3/Python/clinic/
Dimport.c.h92 &PyCode_Type, &code, &path)) { in _imp__fix_co_filename()
/external/python/cpython3/Objects/
Dcodeobject.c187 co = PyObject_NEW(PyCodeObject, &PyCode_Type); in PyCode_New()
727 PyTypeObject PyCode_Type = { variable
Dobject.c1852 if (PyType_Ready(&PyCode_Type) < 0) in _Py_ReadyTypes()
/external/python/cpython2/PC/os2emx/
Dpython27.def239 "PyCode_Type"
/external/python/cpython2/Modules/
D_hotshot.c1099 &PyCode_Type, &code, in profiler_runcode()