Home | History | Annotate | Download | only in Commands

Lines Matching refs:interpreter

18 #include "lldb/Interpreter/CommandInterpreter.h"
19 #include "lldb/Interpreter/CommandReturnObject.h"
20 #include "lldb/Interpreter/CommandCompletions.h"
33 CommandObjectSettingsSet (CommandInterpreter &interpreter) :
34 CommandObjectRaw (interpreter,
38 m_options (interpreter)
103 CommandOptions (CommandInterpreter &interpreter) :
104 Options (interpreter),
303 CommandObjectSettingsShow (CommandInterpreter &interpreter) :
304 CommandObjectParsed (interpreter,
391 CommandObjectSettingsList (CommandInterpreter &interpreter) :
392 CommandObjectParsed (interpreter,
487 CommandObjectSettingsRemove (CommandInterpreter &interpreter) :
488 CommandObjectRaw (interpreter,
607 CommandObjectSettingsReplace (CommandInterpreter &interpreter) :
608 CommandObjectRaw (interpreter,
735 CommandObjectSettingsInsertBefore (CommandInterpreter &interpreter) :
736 CommandObjectRaw (interpreter,
859 CommandObjectSettingsInsertAfter (CommandInterpreter &interpreter) :
860 CommandObjectRaw (interpreter,
983 CommandObjectSettingsAppend (CommandInterpreter &interpreter) :
984 CommandObjectRaw (interpreter,
1099 CommandObjectSettingsClear (CommandInterpreter &interpreter) :
1100 CommandObjectParsed (interpreter,
1189 CommandObjectMultiwordSettings::CommandObjectMultiwordSettings (CommandInterpreter &interpreter) :
1190 CommandObjectMultiword (interpreter,
1195 LoadSubCommand ("set", CommandObjectSP (new CommandObjectSettingsSet (interpreter)));
1196 LoadSubCommand ("show", CommandObjectSP (new CommandObjectSettingsShow (interpreter)));
1197 LoadSubCommand ("list", CommandObjectSP (new CommandObjectSettingsList (interpreter)));
1198 LoadSubCommand ("remove", CommandObjectSP (new CommandObjectSettingsRemove (interpreter)));
1199 LoadSubCommand ("replace", CommandObjectSP (new CommandObjectSettingsReplace (interpreter)));
1200 LoadSubCommand ("insert-before", CommandObjectSP (new CommandObjectSettingsInsertBefore (interpreter)));
1201 LoadSubCommand ("insert-after", CommandObjectSP (new CommandObjectSettingsInsertAfter (interpreter)));
1202 LoadSubCommand ("append", CommandObjectSP (new CommandObjectSettingsAppend (interpreter)));
1203 LoadSubCommand ("clear", CommandObjectSP (new CommandObjectSettingsClear (interpreter)));