Lines Matching refs:interpreter

39   CommandObjectCommandsSource(CommandInterpreter &interpreter)  in CommandObjectCommandsSource()  argument
41 interpreter, "command source", in CommandObjectCommandsSource()
238 CommandObjectCommandsAlias(CommandInterpreter &interpreter) in CommandObjectCommandsAlias() argument
240 interpreter, "command alias", in CommandObjectCommandsAlias()
600 CommandObjectCommandsUnalias(CommandInterpreter &interpreter) in CommandObjectCommandsUnalias() argument
602 interpreter, "command unalias", in CommandObjectCommandsUnalias()
675 CommandObjectCommandsDelete(CommandInterpreter &interpreter) in CommandObjectCommandsDelete() argument
677 interpreter, "command delete", in CommandObjectCommandsDelete()
741 CommandObjectCommandsAddRegex(CommandInterpreter &interpreter) in CommandObjectCommandsAddRegex() argument
743 interpreter, "command regex", in CommandObjectCommandsAddRegex()
1029 CommandObjectPythonFunction(CommandInterpreter &interpreter, std::string name, in CommandObjectPythonFunction() argument
1033 : CommandObjectRaw(interpreter, name), m_function_name(funct), in CommandObjectPythonFunction()
1115 CommandObjectScriptingObjectRaw(CommandInterpreter &interpreter, in CommandObjectScriptingObjectRaw() argument
1120 : CommandObjectRaw(interpreter, name), m_cmd_obj_sp(cmd_obj_sp), in CommandObjectScriptingObjectRaw()
1234 CommandOptions(CommandInterpreter &interpreter, in CommandOptions() argument
1235 StructuredData::GenericSP cmd_obj_sp) : m_interpreter(interpreter), in CommandOptions()
1659 static CommandObjectSP Create(CommandInterpreter &interpreter, in Create() argument
1665 interpreter, name, cmd_obj_sp, synch)); in Create()
1687 CommandObjectScriptingObjectParsed(CommandInterpreter &interpreter, in CommandObjectScriptingObjectParsed() argument
1691 : CommandObjectParsed(interpreter, name.c_str()), in CommandObjectScriptingObjectParsed()
1693 m_options(interpreter, cmd_obj_sp), m_fetched_help_short(false), in CommandObjectScriptingObjectParsed()
1932 CommandObjectCommandsScriptImport(CommandInterpreter &interpreter) in CommandObjectCommandsScriptImport() argument
1933 : CommandObjectParsed(interpreter, "command script import", in CommandObjectCommandsScriptImport()
2034 CommandObjectCommandsScriptAdd(CommandInterpreter &interpreter) in CommandObjectCommandsScriptAdd() argument
2035 : CommandObjectParsed(interpreter, "command script add", in CommandObjectCommandsScriptAdd()
2156 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
2157 if (interpreter) { in IOHandlerInputComplete()
2162 if (interpreter->GenerateScriptAliasFunction(lines, funct_name_str)) { in IOHandlerInputComplete()
2268 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in DoExecute() local
2269 if (!interpreter) { in DoExecute()
2274 auto cmd_obj_sp = interpreter->CreateScriptCommandObject( in DoExecute()
2325 CommandObjectCommandsScriptList(CommandInterpreter &interpreter) in CommandObjectCommandsScriptList() argument
2326 : CommandObjectParsed(interpreter, "command script list", in CommandObjectCommandsScriptList()
2343 CommandObjectCommandsScriptClear(CommandInterpreter &interpreter) in CommandObjectCommandsScriptClear() argument
2344 : CommandObjectParsed(interpreter, "command script clear", in CommandObjectCommandsScriptClear()
2361 CommandObjectCommandsScriptDelete(CommandInterpreter &interpreter) in CommandObjectCommandsScriptDelete() argument
2363 interpreter, "command script delete", in CommandObjectCommandsScriptDelete()
2465 CommandObjectMultiwordCommandsScript(CommandInterpreter &interpreter) in CommandObjectMultiwordCommandsScript() argument
2467 interpreter, "command script", in CommandObjectMultiwordCommandsScript()
2473 new CommandObjectCommandsScriptAdd(interpreter))); in CommandObjectMultiwordCommandsScript()
2476 CommandObjectSP(new CommandObjectCommandsScriptDelete(interpreter))); in CommandObjectMultiwordCommandsScript()
2479 CommandObjectSP(new CommandObjectCommandsScriptClear(interpreter))); in CommandObjectMultiwordCommandsScript()
2481 interpreter))); in CommandObjectMultiwordCommandsScript()
2484 CommandObjectSP(new CommandObjectCommandsScriptImport(interpreter))); in CommandObjectMultiwordCommandsScript()
2496 CommandObjectCommandsContainerAdd(CommandInterpreter &interpreter) in CommandObjectCommandsContainerAdd() argument
2498 interpreter, "command container add", in CommandObjectCommandsContainerAdd()
2624 CommandObjectCommandsContainerDelete(CommandInterpreter &interpreter) in CommandObjectCommandsContainerDelete() argument
2626 interpreter, "command container delete", in CommandObjectCommandsContainerDelete()
2709 CommandObjectCommandContainer(CommandInterpreter &interpreter) in CommandObjectCommandContainer() argument
2711 interpreter, "command container", in CommandObjectCommandContainer()
2718 interpreter))); in CommandObjectCommandContainer()
2721 CommandObjectSP(new CommandObjectCommandsContainerDelete(interpreter))); in CommandObjectCommandContainer()
2732 CommandInterpreter &interpreter) in CommandObjectMultiwordCommands() argument
2733 : CommandObjectMultiword(interpreter, "command", in CommandObjectMultiwordCommands()
2737 CommandObjectSP(new CommandObjectCommandsSource(interpreter))); in CommandObjectMultiwordCommands()
2739 CommandObjectSP(new CommandObjectCommandsAlias(interpreter))); in CommandObjectMultiwordCommands()
2741 new CommandObjectCommandsUnalias(interpreter))); in CommandObjectMultiwordCommands()
2743 CommandObjectSP(new CommandObjectCommandsDelete(interpreter))); in CommandObjectMultiwordCommands()
2745 interpreter))); in CommandObjectMultiwordCommands()
2747 "regex", CommandObjectSP(new CommandObjectCommandsAddRegex(interpreter))); in CommandObjectMultiwordCommands()
2750 CommandObjectSP(new CommandObjectMultiwordCommandsScript(interpreter))); in CommandObjectMultiwordCommands()