Home | History | Annotate | Download | only in Commands

Lines Matching refs:interpreter

19 #include "lldb/Interpreter/CommandInterpreter.h"
20 #include "lldb/Interpreter/CommandReturnObject.h"
41 CommandObjectWatchpointCommandAdd (CommandInterpreter &interpreter) :
42 CommandObjectParsed (interpreter,
46 m_options (interpreter)
73 single line of Python, that will be passed to the Python interpreter \n\
75 definitions, they will be passed to the Python interpreter as soon as \n\
383 CommandOptions (CommandInterpreter &interpreter) :
384 Options (interpreter),
537 // If we are using script language, get the script interpreter
595 { eScriptLanguageNone, "command", "Commands are in the lldb command interpreter language"},
611 "Specify the language for the commands - if none is specified, the lldb command interpreter will be used."},
626 CommandObjectWatchpointCommandDelete (CommandInterpreter &interpreter) :
627 CommandObjectParsed (interpreter,
718 CommandObjectWatchpointCommandList (CommandInterpreter &interpreter) :
719 CommandObjectParsed (interpreter,
827 CommandObjectWatchpointCommand::CommandObjectWatchpointCommand (CommandInterpreter &interpreter) :
828 CommandObjectMultiword (interpreter,
833 CommandObjectSP add_command_object (new CommandObjectWatchpointCommandAdd (interpreter));
834 CommandObjectSP delete_command_object (new CommandObjectWatchpointCommandDelete (interpreter));
835 CommandObjectSP list_command_object (new CommandObjectWatchpointCommandList (interpreter));