Lines Matching refs:interpreter
38 CommandObjectCommandsSource(CommandInterpreter &interpreter) in CommandObjectCommandsSource() argument
40 interpreter, "command source", in CommandObjectCommandsSource()
258 CommandObjectCommandsAlias(CommandInterpreter &interpreter) in CommandObjectCommandsAlias() argument
260 interpreter, "command alias", in CommandObjectCommandsAlias()
620 CommandObjectCommandsUnalias(CommandInterpreter &interpreter) in CommandObjectCommandsUnalias() argument
622 interpreter, "command unalias", in CommandObjectCommandsUnalias()
708 CommandObjectCommandsDelete(CommandInterpreter &interpreter) in CommandObjectCommandsDelete() argument
710 interpreter, "command delete", in CommandObjectCommandsDelete()
787 CommandObjectCommandsAddRegex(CommandInterpreter &interpreter) in CommandObjectCommandsAddRegex() argument
789 interpreter, "command regex", in CommandObjectCommandsAddRegex()
1078 CommandObjectPythonFunction(CommandInterpreter &interpreter, std::string name, in CommandObjectPythonFunction() argument
1081 : CommandObjectRaw(interpreter, name), m_function_name(funct), in CommandObjectPythonFunction()
1150 CommandObjectScriptingObject(CommandInterpreter &interpreter, in CommandObjectScriptingObject() argument
1154 : CommandObjectRaw(interpreter, name), m_cmd_obj_sp(cmd_obj_sp), in CommandObjectScriptingObject()
1240 CommandObjectCommandsScriptImport(CommandInterpreter &interpreter) in CommandObjectCommandsScriptImport() argument
1241 : CommandObjectParsed(interpreter, "command script import", in CommandObjectCommandsScriptImport()
1364 CommandObjectCommandsScriptAdd(CommandInterpreter &interpreter) in CommandObjectCommandsScriptAdd() argument
1365 : CommandObjectParsed(interpreter, "command script add", in CommandObjectCommandsScriptAdd()
1480 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in IOHandlerInputComplete() local
1481 if (interpreter) { in IOHandlerInputComplete()
1486 if (interpreter->GenerateScriptAliasFunction(lines, funct_name_str)) { in IOHandlerInputComplete()
1591 ScriptInterpreter *interpreter = GetDebugger().GetScriptInterpreter(); in DoExecute() local
1592 if (!interpreter) { in DoExecute()
1597 auto cmd_obj_sp = interpreter->CreateScriptCommandObject( in DoExecute()
1639 CommandObjectCommandsScriptList(CommandInterpreter &interpreter) in CommandObjectCommandsScriptList() argument
1640 : CommandObjectParsed(interpreter, "command script list", in CommandObjectCommandsScriptList()
1659 CommandObjectCommandsScriptClear(CommandInterpreter &interpreter) in CommandObjectCommandsScriptClear() argument
1660 : CommandObjectParsed(interpreter, "command script clear", in CommandObjectCommandsScriptClear()
1679 CommandObjectCommandsScriptDelete(CommandInterpreter &interpreter) in CommandObjectCommandsScriptDelete() argument
1681 interpreter, "command script delete", in CommandObjectCommandsScriptDelete()
1796 CommandObjectMultiwordCommandsScript(CommandInterpreter &interpreter) in CommandObjectMultiwordCommandsScript() argument
1798 interpreter, "command script", in CommandObjectMultiwordCommandsScript()
1804 new CommandObjectCommandsScriptAdd(interpreter))); in CommandObjectMultiwordCommandsScript()
1807 CommandObjectSP(new CommandObjectCommandsScriptDelete(interpreter))); in CommandObjectMultiwordCommandsScript()
1810 CommandObjectSP(new CommandObjectCommandsScriptClear(interpreter))); in CommandObjectMultiwordCommandsScript()
1812 interpreter))); in CommandObjectMultiwordCommandsScript()
1815 CommandObjectSP(new CommandObjectCommandsScriptImport(interpreter))); in CommandObjectMultiwordCommandsScript()
1827 CommandObjectCommandsContainerAdd(CommandInterpreter &interpreter) in CommandObjectCommandsContainerAdd() argument
1829 interpreter, "command container add", in CommandObjectCommandsContainerAdd()
1969 CommandObjectCommandsContainerDelete(CommandInterpreter &interpreter) in CommandObjectCommandsContainerDelete() argument
1971 interpreter, "command container delete", in CommandObjectCommandsContainerDelete()
2068 CommandObjectCommandContainer(CommandInterpreter &interpreter) in CommandObjectCommandContainer() argument
2070 interpreter, "command container", in CommandObjectCommandContainer()
2077 interpreter))); in CommandObjectCommandContainer()
2080 CommandObjectSP(new CommandObjectCommandsContainerDelete(interpreter))); in CommandObjectCommandContainer()
2091 CommandInterpreter &interpreter) in CommandObjectMultiwordCommands() argument
2092 : CommandObjectMultiword(interpreter, "command", in CommandObjectMultiwordCommands()
2096 CommandObjectSP(new CommandObjectCommandsSource(interpreter))); in CommandObjectMultiwordCommands()
2098 CommandObjectSP(new CommandObjectCommandsAlias(interpreter))); in CommandObjectMultiwordCommands()
2100 new CommandObjectCommandsUnalias(interpreter))); in CommandObjectMultiwordCommands()
2102 CommandObjectSP(new CommandObjectCommandsDelete(interpreter))); in CommandObjectMultiwordCommands()
2104 interpreter))); in CommandObjectMultiwordCommands()
2106 "regex", CommandObjectSP(new CommandObjectCommandsAddRegex(interpreter))); in CommandObjectMultiwordCommands()
2109 CommandObjectSP(new CommandObjectMultiwordCommandsScript(interpreter))); in CommandObjectMultiwordCommands()