Lines Matching defs:interpreter

39   CommandObjectCommandsSource(CommandInterpreter &interpreter)
41 interpreter, "command source",
238 CommandObjectCommandsAlias(CommandInterpreter &interpreter)
240 interpreter, "command alias",
600 CommandObjectCommandsUnalias(CommandInterpreter &interpreter)
602 interpreter, "command unalias",
675 CommandObjectCommandsDelete(CommandInterpreter &interpreter)
677 interpreter, "command delete",
741 CommandObjectCommandsAddRegex(CommandInterpreter &interpreter)
743 interpreter, "command regex",
1029 CommandObjectPythonFunction(CommandInterpreter &interpreter, std::string name,
1033 : CommandObjectRaw(interpreter, name), m_function_name(funct),
1115 CommandObjectScriptingObjectRaw(CommandInterpreter &interpreter,
1120 : CommandObjectRaw(interpreter, name), m_cmd_obj_sp(cmd_obj_sp),
1234 CommandOptions(CommandInterpreter &interpreter,
1235 StructuredData::GenericSP cmd_obj_sp) : m_interpreter(interpreter),
1246 error.SetErrorString("No script interpreter for SetOptionValue.");
1659 static CommandObjectSP Create(CommandInterpreter &interpreter,
1665 interpreter, name, cmd_obj_sp, synch));
1687 CommandObjectScriptingObjectParsed(CommandInterpreter &interpreter,
1691 : CommandObjectParsed(interpreter, name.c_str()),
1693 m_options(interpreter, cmd_obj_sp), m_fetched_help_short(false),
1698 m_options_error.SetErrorString("No script interpreter");
1932 CommandObjectCommandsScriptImport(CommandInterpreter &interpreter)
1933 : CommandObjectParsed(interpreter, "command script import",
2034 CommandObjectCommandsScriptAdd(CommandInterpreter &interpreter)
2035 : CommandObjectParsed(interpreter, "command script add",
2156 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter();
2157 if (interpreter) {
2162 if (interpreter->GenerateScriptAliasFunction(lines, funct_name_str)) {
2202 "error: script interpreter missing, didn't add python command\n");
2244 // This is getting inserted into the root of the interpreter.
2268 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter();
2269 if (!interpreter) {
2274 auto cmd_obj_sp = interpreter->CreateScriptCommandObject(
2325 CommandObjectCommandsScriptList(CommandInterpreter &interpreter)
2326 : CommandObjectParsed(interpreter, "command script list",
2343 CommandObjectCommandsScriptClear(CommandInterpreter &interpreter)
2344 : CommandObjectParsed(interpreter, "command script clear",
2361 CommandObjectCommandsScriptDelete(CommandInterpreter &interpreter)
2363 interpreter, "command script delete",
2465 CommandObjectMultiwordCommandsScript(CommandInterpreter &interpreter)
2467 interpreter, "command script",
2470 "interpreter scripts.",
2473 new CommandObjectCommandsScriptAdd(interpreter)));
2476 CommandObjectSP(new CommandObjectCommandsScriptDelete(interpreter)));
2479 CommandObjectSP(new CommandObjectCommandsScriptClear(interpreter)));
2481 interpreter)));
2484 CommandObjectSP(new CommandObjectCommandsScriptImport(interpreter)));
2496 CommandObjectCommandsContainerAdd(CommandInterpreter &interpreter)
2498 interpreter, "command container add",
2572 // We're adding this as a root command, so use the interpreter.
2624 CommandObjectCommandsContainerDelete(CommandInterpreter &interpreter)
2626 interpreter, "command container delete",
2653 // interpreter.
2709 CommandObjectCommandContainer(CommandInterpreter &interpreter)
2711 interpreter, "command container",
2718 interpreter)));
2721 CommandObjectSP(new CommandObjectCommandsContainerDelete(interpreter)));
2732 CommandInterpreter &interpreter)
2733 : CommandObjectMultiword(interpreter, "command",
2737 CommandObjectSP(new CommandObjectCommandsSource(interpreter)));
2739 CommandObjectSP(new CommandObjectCommandsAlias(interpreter)));
2741 new CommandObjectCommandsUnalias(interpreter)));
2743 CommandObjectSP(new CommandObjectCommandsDelete(interpreter)));
2745 interpreter)));
2747 "regex", CommandObjectSP(new CommandObjectCommandsAddRegex(interpreter)));
2750 CommandObjectSP(new CommandObjectMultiwordCommandsScript(interpreter)));