Home | History | Annotate | Download | only in Commands

Lines Matching refs:interpreter

24 #include "lldb/Interpreter/Args.h"
25 #include "lldb/Interpreter/CommandHistory.h"
26 #include "lldb/Interpreter/CommandInterpreter.h"
27 #include "lldb/Interpreter/CommandObjectRegexCommand.h"
28 #include "lldb/Interpreter/CommandReturnObject.h"
29 #include "lldb/Interpreter/OptionValueBoolean.h"
30 #include "lldb/Interpreter/OptionValueUInt64.h"
31 #include "lldb/Interpreter/Options.h"
32 #include "lldb/Interpreter/ScriptInterpreter.h"
33 #include "lldb/Interpreter/ScriptInterpreterPython.h"
45 CommandObjectCommandsHistory(CommandInterpreter &interpreter) :
46 CommandObjectParsed (interpreter,
50 m_options (interpreter)
68 CommandOptions (CommandInterpreter &interpreter) :
69 Options (interpreter),
245 CommandObjectCommandsSource(CommandInterpreter &interpreter) :
246 CommandObjectParsed (interpreter,
250 m_options (interpreter)
310 CommandOptions (CommandInterpreter &interpreter) :
311 Options (interpreter),
434 CommandObjectCommandsAlias (CommandInterpreter &interpreter) :
435 CommandObjectRaw (interpreter,
777 CommandObjectCommandsUnalias (CommandInterpreter &interpreter) :
778 CommandObjectParsed (interpreter,
862 CommandObjectCommandsAddRegex (CommandInterpreter &interpreter) :
863 CommandObjectParsed (interpreter,
867 m_options (interpreter)
1166 CommandOptions (CommandInterpreter &interpreter) :
1167 Options (interpreter)
1261 CommandObjectPythonFunction (CommandInterpreter &interpreter,
1265 CommandObjectRaw (interpreter,
1358 CommandObjectCommandsScriptImport (CommandInterpreter &interpreter) :
1359 CommandObjectParsed (interpreter,
1363 m_options(interpreter)
1419 CommandOptions (CommandInterpreter &interpreter) :
1420 Options (interpreter)
1532 CommandObjectCommandsScriptAdd(CommandInterpreter &interpreter) :
1533 CommandObjectParsed (interpreter,
1537 m_options (interpreter)
1569 CommandOptions (CommandInterpreter &interpreter) :
1570 Options (interpreter)
1635 CommandInterpreter& interpreter,
1639 m_interpreter(interpreter),
1706 ScriptInterpreter *interpreter
1707 if (!interpreter)
1709 out_stream->Printf ("Script interpreter missing: no script attached.\n");
1714 if (!interpreter->GenerateScriptAliasFunction (m_user_input,
1845 CommandObjectCommandsScriptList(CommandInterpreter &interpreter) :
1846 CommandObjectParsed (interpreter,
1881 CommandObjectCommandsScriptClear(CommandInterpreter &interpreter) :
1882 CommandObjectParsed (interpreter,
1913 CommandObjectCommandsScriptDelete(CommandInterpreter &interpreter) :
1914 CommandObjectParsed (interpreter,
1978 CommandObjectMultiwordCommandsScript (CommandInterpreter &interpreter) :
1979 CommandObjectMultiword (interpreter,
1984 LoadSubCommand ("add", CommandObjectSP (new CommandObjectCommandsScriptAdd (interpreter)));
1985 LoadSubCommand ("delete", CommandObjectSP (new CommandObjectCommandsScriptDelete (interpreter)));
1986 LoadSubCommand ("clear", CommandObjectSP (new CommandObjectCommandsScriptClear (interpreter)));
1987 LoadSubCommand ("list", CommandObjectSP (new CommandObjectCommandsScriptList (interpreter)));
1988 LoadSubCommand ("import", CommandObjectSP (new CommandObjectCommandsScriptImport (interpreter)));
2004 CommandObjectMultiwordCommands::CommandObjectMultiwordCommands (CommandInterpreter &interpreter) :
2005 CommandObjectMultiword (interpreter,
2010 LoadSubCommand ("source", CommandObjectSP (new CommandObjectCommandsSource (interpreter)));
2011 LoadSubCommand ("alias", CommandObjectSP (new CommandObjectCommandsAlias (interpreter)));
2012 LoadSubCommand ("unalias", CommandObjectSP (new CommandObjectCommandsUnalias (interpreter)));
2013 LoadSubCommand ("regex", CommandObjectSP (new CommandObjectCommandsAddRegex (interpreter)));
2014 LoadSubCommand ("history", CommandObjectSP (new CommandObjectCommandsHistory (interpreter)));
2015 LoadSubCommand ("script", CommandObjectSP (new CommandObjectMultiwordCommandsScript (interpreter)));