Home
last modified time | relevance | path

Searched refs:PyCode_NewEmpty (Results 1 – 22 of 22) sorted by relevance

/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dcode.rst39 create a frame, use :c:func:`PyCode_NewEmpty` instead. Calling
44 .. c:function:: int PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno)
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dcode.rst39 use :c:func:`PyCode_NewEmpty` instead. Calling :c:func:`PyCode_New` directly
58 .. c:function:: PyCodeObject* PyCode_NewEmpty(const char *filename, const char *funcname, int first…
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/
Dcallbacks.c102 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno) in PyCode_NewEmpty() function
159 py_code = PyCode_NewEmpty(filename, funcname, lineno); in _ctypes_add_traceback()
/aosp_15_r20/external/python/cpython2/Include/
Dcode.h78 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dcode.h163 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dcode.h163 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dcode.h163 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dcode.h163 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dcode.h163 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno);
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat272 PyCode_NewEmpty:PyCodeObject*::+1:
273 PyCode_NewEmpty:const char*:filename::
274 PyCode_NewEmpty:const char*:funcname::
275 PyCode_NewEmpty:int:firstlineno::
Dpython3.11.abi74 …<elf-symbol name='PyCode_NewEmpty' type='func-type' binding='global-binding' visibility='default-v…
7511PyCode_NewEmpty' mangled-name='PyCode_NewEmpty' filepath='Objects/codeobject.c' line='646' column=…
/aosp_15_r20/external/python/cpython2/Objects/
Dcodeobject.c152 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno) in PyCode_NewEmpty() function
/aosp_15_r20/external/python/cpython3/Python/
Dtraceback.c280 code = PyCode_NewEmpty(filename, funcname, lineno); in _PyTraceback_Add()
/aosp_15_r20/external/python/cpython2/Modules/
Dpyexpat.c266 PyCode_NewEmpty(__FILE__, func_name, lineno); in getcode()
D_testcapimodule.c2304 return (PyObject *)PyCode_NewEmpty(filename, funcname, firstlineno); in code_newempty()
/aosp_15_r20/external/python/cpython3/Objects/
Dcodeobject.c656 PyCode_NewEmpty(const char *filename, const char *funcname, int firstlineno) in PyCode_NewEmpty() function
/aosp_15_r20/external/python/cpython3/Modules/
D_testcapimodule.c3618 return (PyObject *)PyCode_NewEmpty(filename, funcname, firstlineno); in code_newempty()
6224 PyCodeObject *co = PyCode_NewEmpty("_testcapi", "dummy", 1); in test_code_api()
/aosp_15_r20/external/python/cpython3/Tools/c-analyzer/
DTODO155 Objects/codeobject.c:PyCode_NewEmpty():emptystring static PyObject *emptystring
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst5218 Add a PyCode_NewEmpty() function to create a new empty code object at a
/aosp_15_r20/external/python/cpython2/Doc/whatsnew/
D2.7.rst2102 * New function: :c:func:`PyCode_NewEmpty` creates an empty code object;
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D2.7.rst2126 * New function: :c:func:`PyCode_NewEmpty` creates an empty code object;
/aosp_15_r20/external/python/cpython3/Misc/
DHISTORY13113 - Issue #5959: Add a PyCode_NewEmpty() function to create a new empty code