Home
last modified time | relevance | path

Searched refs:Py_CompileString (Results 1 – 25 of 30) sorted by relevance

12

/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dveryhigh.rst223 .. c:function:: PyObject* Py_CompileString(const char *str, const char *filename, int start)
279 .. index:: single: Py_CompileString()
282 :c:func:`Py_CompileString`.
287 .. index:: single: Py_CompileString()
290 from a file or other source; for use with :c:func:`Py_CompileString`. This is
296 .. index:: single: Py_CompileString()
299 :c:func:`Py_CompileString`. This is the symbol used for the interactive
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dveryhigh.rst235 .. c:function:: PyObject* Py_CompileString(const char *str, const char *filename, int start)
317 .. index:: single: Py_CompileString()
320 :c:func:`Py_CompileString`.
325 .. index:: single: Py_CompileString()
328 from a file or other source; for use with :c:func:`Py_CompileString`. This is
334 .. index:: single: Py_CompileString()
337 :c:func:`Py_CompileString`. This is the symbol used for the interactive
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dpythonrun.h10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
/aosp_15_r20/external/python/cpython3/Include/
Dpythonrun.h10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dpythonrun.h10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dpythonrun.h10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dpythonrun.h10 PyAPI_FUNC(PyObject *) Py_CompileString(const char *, const char *, int);
/aosp_15_r20/external/python/cpython2/Include/
Dpythonrun.h65 #define Py_CompileString(str, p, s) Py_CompileStringFlags(str, p, s, NULL) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dpythonrun.h69 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) macro
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dpythonrun.h69 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dpythonrun.h69 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dpythonrun.h69 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dpythonrun.h69 #define Py_CompileString(str, p, s) Py_CompileStringExFlags(str, p, s, NULL, -1) macro
/aosp_15_r20/external/python/cpython2/Doc/data/
Drefcounts.dat1738 Py_CompileString:PyObject*::+1:
1739 Py_CompileString:char*:str::
1740 Py_CompileString:char*:filename::
1741 Py_CompileString:int:start::
/aosp_15_r20/external/python/cpython2/PC/os2vacpp/
Dpython.def413 Py_CompileString
/aosp_15_r20/external/python/cpython2/Python/
Dpythonrun.c2022 #undef Py_CompileString
2024 Py_CompileString(const char *str, const char *p, int s) in Py_CompileString() function
/aosp_15_r20/external/python/cpython2/Doc/faq/
Dextending.rst319 :c:func:`Py_CompileString`. If it compiles without errors, try to execute the
381 src = Py_CompileString (code, "<stdin>", Py_single_input);
/aosp_15_r20/external/python/cpython3/Python/
Dpythonrun.c1981 #undef Py_CompileString
1983 Py_CompileString(const char *str, const char *p, int s) in Py_CompileString() function
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat2864 Py_CompileString:PyObject*::+1:
2865 Py_CompileString:const char*:str::
2866 Py_CompileString:const char*:filename::
2867 Py_CompileString:int:start::
Dstable_abi.dat800 function,Py_CompileString,3.2,,
/aosp_15_r20/external/python/cpython2/PC/os2emx/
Dpython27.def1111 "Py_CompileString"
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c44 EXPORT_FUNC(Py_CompileString)
/aosp_15_r20/external/python/cpython2/Modules/
Dzipimport.c1148 code = Py_CompileString(PyString_AsString(fixed_source), pathname, in compile_source()
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.10.rst1936 example, :c:func:`Py_CompileString`. The resulting code object can then be
1942 ``PyNode_Compile`` can be replaced by calling :c:func:`Py_CompileString`.
1946 the file in C and pass the resulting buffer to :c:func:`Py_CompileString`.
1951 :c:func:`PyBytes_AsString` and :c:func:`Py_CompileString`,
1959 code = Py_CompileString(source_buf, filename, Py_file_input);
/aosp_15_r20/external/python/cpython3/Lib/test/test_capi/
Dtest_misc.py819 _compile = _testcapi.Py_CompileString

12