Lines Matching refs:interpreter
19 #include "lldb/Interpreter/CommandInterpreter.h"
20 #include "lldb/Interpreter/CommandReturnObject.h"
41 CommandObjectBreakpointCommandAdd (CommandInterpreter &interpreter) :
42 CommandObjectParsed (interpreter,
46 m_options (interpreter)
71 to the Python interpreter 'as is' when the breakpoint gets hit. If you enter\n\
72 function definitions, they will be passed to the Python interpreter as soon as\n\
406 CommandOptions (CommandInterpreter &interpreter) :
407 Options (interpreter),
574 // If we are using script language, get the script interpreter
634 { eScriptLanguageNone, "command", "Commands are in the lldb command interpreter language"},
650 "Specify the language for the commands - if none is specified, the lldb command interpreter will be used."},
665 CommandObjectBreakpointCommandDelete (CommandInterpreter &interpreter) :
666 CommandObjectParsed (interpreter,
763 CommandObjectBreakpointCommandList (CommandInterpreter &interpreter) :
764 CommandObjectParsed (interpreter,
892 CommandObjectBreakpointCommand::CommandObjectBreakpointCommand (CommandInterpreter &interpreter) :
893 CommandObjectMultiword (interpreter,
898 CommandObjectSP add_command_object (new CommandObjectBreakpointCommandAdd (interpreter));
899 CommandObjectSP delete_command_object (new CommandObjectBreakpointCommandDelete (interpreter));
900 CommandObjectSP list_command_object (new CommandObjectBreakpointCommandList (interpreter));