Lines Matching refs:interpreter
39 CommandObjectCommandsSource(CommandInterpreter &interpreter) in CommandObjectCommandsSource() argument
41 interpreter, "command source", in CommandObjectCommandsSource()
257 CommandObjectCommandsAlias(CommandInterpreter &interpreter) in CommandObjectCommandsAlias() argument
259 interpreter, "command alias", in CommandObjectCommandsAlias()
619 CommandObjectCommandsUnalias(CommandInterpreter &interpreter) in CommandObjectCommandsUnalias() argument
621 interpreter, "command unalias", in CommandObjectCommandsUnalias()
706 CommandObjectCommandsDelete(CommandInterpreter &interpreter) in CommandObjectCommandsDelete() argument
708 interpreter, "command delete", in CommandObjectCommandsDelete()
784 CommandObjectCommandsAddRegex(CommandInterpreter &interpreter) in CommandObjectCommandsAddRegex() argument
786 interpreter, "command regex", in CommandObjectCommandsAddRegex()
1073 CommandObjectPythonFunction(CommandInterpreter &interpreter, std::string name, in CommandObjectPythonFunction() argument
1077 : CommandObjectRaw(interpreter, name), m_function_name(funct), in CommandObjectPythonFunction()
1154 CommandObjectScriptingObject(CommandInterpreter &interpreter, in CommandObjectScriptingObject() argument
1159 : CommandObjectRaw(interpreter, name), m_cmd_obj_sp(cmd_obj_sp), in CommandObjectScriptingObject()
1253 CommandObjectCommandsScriptImport(CommandInterpreter &interpreter) in CommandObjectCommandsScriptImport() argument
1254 : CommandObjectParsed(interpreter, "command script import", in CommandObjectCommandsScriptImport()
1374 CommandObjectCommandsScriptAdd(CommandInterpreter &interpreter) in CommandObjectCommandsScriptAdd() argument
1375 : CommandObjectParsed(interpreter, "command script add", in CommandObjectCommandsScriptAdd()
1504 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
1505 if (interpreter) { in IOHandlerInputComplete()
1510 if (interpreter->GenerateScriptAliasFunction(lines, funct_name_str)) { in IOHandlerInputComplete()
1616 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in DoExecute() local
1617 if (!interpreter) { in DoExecute()
1622 auto cmd_obj_sp = interpreter->CreateScriptCommandObject( in DoExecute()
1666 CommandObjectCommandsScriptList(CommandInterpreter &interpreter) in CommandObjectCommandsScriptList() argument
1667 : CommandObjectParsed(interpreter, "command script list", in CommandObjectCommandsScriptList()
1684 CommandObjectCommandsScriptClear(CommandInterpreter &interpreter) in CommandObjectCommandsScriptClear() argument
1685 : CommandObjectParsed(interpreter, "command script clear", in CommandObjectCommandsScriptClear()
1702 CommandObjectCommandsScriptDelete(CommandInterpreter &interpreter) in CommandObjectCommandsScriptDelete() argument
1704 interpreter, "command script delete", in CommandObjectCommandsScriptDelete()
1818 CommandObjectMultiwordCommandsScript(CommandInterpreter &interpreter) in CommandObjectMultiwordCommandsScript() argument
1820 interpreter, "command script", in CommandObjectMultiwordCommandsScript()
1826 new CommandObjectCommandsScriptAdd(interpreter))); in CommandObjectMultiwordCommandsScript()
1829 CommandObjectSP(new CommandObjectCommandsScriptDelete(interpreter))); in CommandObjectMultiwordCommandsScript()
1832 CommandObjectSP(new CommandObjectCommandsScriptClear(interpreter))); in CommandObjectMultiwordCommandsScript()
1834 interpreter))); in CommandObjectMultiwordCommandsScript()
1837 CommandObjectSP(new CommandObjectCommandsScriptImport(interpreter))); in CommandObjectMultiwordCommandsScript()
1849 CommandObjectCommandsContainerAdd(CommandInterpreter &interpreter) in CommandObjectCommandsContainerAdd() argument
1851 interpreter, "command container add", in CommandObjectCommandsContainerAdd()
1990 CommandObjectCommandsContainerDelete(CommandInterpreter &interpreter) in CommandObjectCommandsContainerDelete() argument
1992 interpreter, "command container delete", in CommandObjectCommandsContainerDelete()
2088 CommandObjectCommandContainer(CommandInterpreter &interpreter) in CommandObjectCommandContainer() argument
2090 interpreter, "command container", in CommandObjectCommandContainer()
2097 interpreter))); in CommandObjectCommandContainer()
2100 CommandObjectSP(new CommandObjectCommandsContainerDelete(interpreter))); in CommandObjectCommandContainer()
2111 CommandInterpreter &interpreter) in CommandObjectMultiwordCommands() argument
2112 : CommandObjectMultiword(interpreter, "command", in CommandObjectMultiwordCommands()
2116 CommandObjectSP(new CommandObjectCommandsSource(interpreter))); in CommandObjectMultiwordCommands()
2118 CommandObjectSP(new CommandObjectCommandsAlias(interpreter))); in CommandObjectMultiwordCommands()
2120 new CommandObjectCommandsUnalias(interpreter))); in CommandObjectMultiwordCommands()
2122 CommandObjectSP(new CommandObjectCommandsDelete(interpreter))); in CommandObjectMultiwordCommands()
2124 interpreter))); in CommandObjectMultiwordCommands()
2126 "regex", CommandObjectSP(new CommandObjectCommandsAddRegex(interpreter))); in CommandObjectMultiwordCommands()
2129 CommandObjectSP(new CommandObjectMultiwordCommandsScript(interpreter))); in CommandObjectMultiwordCommands()