Lines Matching full:in_string
1035 ScriptInterpreterPython::ExecuteOneLineWithReturn (const char *in_string,
1072 if (in_string != NULL)
1076 py_return = PyRun_String (in_string, Py_eval_input, globals, locals);
1083 py_return = PyRun_String (in_string, Py_single_input, globals, locals);
1204 ScriptInterpreterPython::ExecuteMultipleLines (const char *in_string, const ExecuteScriptOptions &options)
1238 if (in_string != NULL)
1240 struct _node *compiled_node = PyParser_SimpleParseString (in_string, Py_file_input);