reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
 1528       PyRun_String(script, Py_file_input, globals.get(), globals.get());
 1577   PyObject *result = PyRun_String(NullTerminated(string), Py_file_input,
tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
  637     PyObject *o = PyRun_String("lambda x : x", Py_eval_input, globals.get(),
  649     PyObject *o = PyRun_String("lambda x,y=0: x", Py_eval_input, globals.get(),
  661     PyObject *o = PyRun_String("lambda x,y=0, **kw: x", Py_eval_input,
  673     PyObject *o = PyRun_String("lambda x,y,*a: x", Py_eval_input, globals.get(),
  686     PyObject *o = PyRun_String("lambda x,y,*a,**kw: x", Py_eval_input,
  718         PyRun_String(script, Py_file_input, globals.get(), globals.get());