Home
last modified time | relevance | path

Searched refs:PyRun_String (Results 1 – 25 of 28) sorted by relevance

12

/external/python/cffi/cffi/
D_cffi_errors.h49 x = PyRun_String( in _cffi_start_error_capture()
106 s = PyRun_String("done()", Py_eval_input, ecap, ecap); in _cffi_stop_error_capture()
/external/python/cpython3/Include/
Dpythonrun.h156 PyAPI_FUNC(PyObject *) PyRun_String(const char *str, int s, PyObject *g, PyObject *l);
170 #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL) macro
/external/llvm-project/lldb/unittests/ScriptInterpreter/Python/
DPythonDataObjectsTests.cpp637 PyObject *o = PyRun_String("lambda x : x", Py_eval_input, globals.get(), in TEST_F()
647 PyObject *o = PyRun_String("lambda x,y=0: x", Py_eval_input, globals.get(), in TEST_F()
657 PyObject *o = PyRun_String("lambda x,y=0, **kw: x", Py_eval_input, in TEST_F()
667 PyObject *o = PyRun_String("lambda x,y,*a: x", Py_eval_input, globals.get(), in TEST_F()
678 PyObject *o = PyRun_String("lambda x,y,*a,**kw: x", Py_eval_input, in TEST_F()
718 PyRun_String(script, Py_file_input, globals.get(), globals.get()); in TEST_F()
/external/python/pybind11/include/pybind11/
Deval.h64 PyObject *result = PyRun_String(buffer.c_str(), start, global.ptr(), local.ptr());
Dpybind11.h2305 PyObject *result = PyRun_String(
/external/python/cpython2/Include/
Dpythonrun.h84 #define PyRun_String(str, s, g, l) PyRun_StringFlags(str, s, g, l, NULL) macro
/external/python/cpython2/Demo/pysvr/
Dpysvr.c350 v = PyRun_String(buffer, Py_single_input, globals, globals); in run_command()
/external/python/cpython2/PC/os2vacpp/
Dpython.def342 PyRun_String
/external/python/pybind11/tests/
Dconstructor_stats.h114 PyObject *result = PyRun_String( in gc()
/external/python/cpython2/Doc/data/
Drefcounts.dat1114 PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1115 PyRun_String:char*:str::
1116 PyRun_String:int:start::
1117 PyRun_String:PyObject*:globals:0:
1118 PyRun_String:PyObject*:locals:0:
/external/python/cpython3/Doc/faq/
Dextending.rst67 :c:func:`PyRun_String`; see the source for :c:func:`PyRun_SimpleString` in
74 Call the function :c:func:`PyRun_String` from the previous question with the
/external/python/cpython2/Python/
Dpythonrun.c2008 #undef PyRun_String
2010 PyRun_String(const char *str, int s, PyObject *g, PyObject *l) in PyRun_String() function
Dceval.c5125 v = PyRun_String(str, Py_file_input, globals, locals); in exec_statement()
/external/python/cpython2/Doc/faq/
Dextending.rst70 :c:func:`PyRun_String`; see the source for :c:func:`PyRun_SimpleString` in
77 Call the function :c:func:`PyRun_String` from the previous question with the
/external/python/cpython3/Doc/data/
Drefcounts.dat1924 PyRun_String:PyObject*::+1:??? -- same as eval_code2()
1925 PyRun_String:const char*:str::
1926 PyRun_String:int:start::
1927 PyRun_String:PyObject*:globals:0:
1928 PyRun_String:PyObject*:locals:0:
/external/python/pybind11/include/pybind11/detail/
Dclass.h100 PyObject *result = PyRun_String(R"(\ in make_static_property_type()
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
DPythonDataObjects.cpp1565 PyRun_String(script, Py_file_input, globals.get(), globals.get()); in Init()
1614 PyObject *result = PyRun_String(NullTerminated(string), Py_file_input, in runStringMultiLine()
/external/python/cpython3/Python/
Dpythonrun.c1792 #undef PyRun_String
1794 PyRun_String(const char *str, int s, PyObject *g, PyObject *l) in PyRun_String() function
Dbltinmodule.c1051 v = PyRun_String(str, Py_file_input, globals, locals); in builtin_exec_impl()
/external/python/cpython2/PC/os2emx/
Dpython27.def1109 "PyRun_String"
/external/python/cpython2/Doc/c-api/
Dveryhigh.rst180 .. c:function:: PyObject* PyRun_String(const char *str, int start, PyObject *globals, PyObject *loc…
/external/python/cpython3/Doc/c-api/
Dveryhigh.rst235 .. c:function:: PyObject* PyRun_String(const char *str, int start, PyObject *globals, PyObject *loc…
/external/python/cpython2/Modules/
DcPickle.c5941 if (!( r=PyRun_String( in init_stuff()
5960 if (!( r=PyRun_String( in init_stuff()
D_elementtree.c3165 if (!PyRun_String(bootstrap, Py_file_input, g, NULL))
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a1.rst4579 Many ``PyRun_XXX()`` functions like :c:func:`PyRun_String` were no longer

12