• Home
  • Raw
  • Download

Lines Matching refs:m_interpreter

159         options.SetEchoCommands(m_interpreter.GetEchoCommands());  in DoExecute()
160 options.SetEchoCommentCommands(m_interpreter.GetEchoCommentCommands()); in DoExecute()
163 m_interpreter.HandleCommandsFromFile(cmd_file, exe_ctx, options, result); in DoExecute()
168 m_interpreter.HandleCommandsFromFile(cmd_file, exe_ctx, options, result); in DoExecute()
423 if (m_interpreter.CommandExists(alias_command)) { in DoExecute()
436 m_interpreter.GetCommandObjectForCommand(raw_command_string); in DoExecute()
467 m_interpreter.GetCommandSPExact(cmd_obj.GetCommandName(), false)) { in HandleAliasingRawCommand()
468 if (m_interpreter.AliasExists(alias_command) || in HandleAliasingRawCommand()
469 m_interpreter.UserCommandExists(alias_command)) { in HandleAliasingRawCommand()
474 if (CommandAlias *alias = m_interpreter.AddAlias( in HandleAliasingRawCommand()
513 if (m_interpreter.CommandExists(alias_command)) { in HandleAliasingNormalCommand()
522 m_interpreter.GetCommandSPExact(actual_command, true)); in HandleAliasingNormalCommand()
561 m_interpreter.GetCommandSPExact(cmd_obj->GetCommandName(), false); in HandleAliasingNormalCommand()
563 tmp_sp = m_interpreter.GetCommandSPExact(sub_cmd_obj->GetCommandName(), in HandleAliasingNormalCommand()
569 if (m_interpreter.AliasExists(alias_command) || in HandleAliasingNormalCommand()
570 m_interpreter.UserCommandExists(alias_command)) { in HandleAliasingNormalCommand()
575 if (CommandAlias *alias = m_interpreter.AddAlias( in HandleAliasingNormalCommand()
623 if (!m_interpreter.HasCommands() || request.GetCursorIndex() != 0) in HandleArgumentCompletion()
626 for (const auto &ent : m_interpreter.GetAliases()) { in HandleArgumentCompletion()
643 cmd_obj = m_interpreter.GetCommandObject(command_name); in DoExecute()
653 if (m_interpreter.CommandExists(command_name)) { in DoExecute()
668 if (!m_interpreter.RemoveAlias(command_name)) { in DoExecute()
669 if (m_interpreter.AliasExists(command_name)) in DoExecute()
715 if (!m_interpreter.HasCommands() || request.GetCursorIndex() != 0) in HandleArgumentCompletion()
718 for (const auto &ent : m_interpreter.GetCommands()) { in HandleArgumentCompletion()
737 if (!m_interpreter.CommandExists(command_name)) { in DoExecute()
749 if (!m_interpreter.RemoveCommand(command_name)) { in DoExecute()
848 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in IOHandlerInputComplete()
865 m_interpreter, name, m_options.GetHelp(), m_options.GetSyntax(), 10, 0, in DoExecute()
1004 m_interpreter.AddCommand(cmd_sp->GetCommandName(), cmd_sp, true); in AddRegexCommandToInterpreter()
1485 m_interpreter, m_cmd_name, funct_name_str, m_short_help, in IOHandlerInputComplete()
1488 if (!m_interpreter.AddUserCommand(m_cmd_name, command_obj_sp, in IOHandlerInputComplete()
1534 m_interpreter.GetPythonCommandsFromIOHandler( in DoExecute()
1539 m_interpreter, m_cmd_name, m_options.m_funct_name, in DoExecute()
1541 if (m_interpreter.AddUserCommand(m_cmd_name, new_cmd, true)) { in DoExecute()
1565 m_interpreter, m_cmd_name, cmd_obj_sp, m_synchronicity)); in DoExecute()
1566 if (m_interpreter.AddUserCommand(m_cmd_name, new_cmd, true)) { in DoExecute()
1600 m_interpreter.GetHelp(result, CommandInterpreter::eCommandTypesUserDef); in DoExecute()
1626 m_interpreter.RemoveAllUser(); in DoExecute()
1661 if (!m_interpreter.HasCommands() || request.GetCursorIndex() != 0) in HandleArgumentCompletion()
1664 for (const auto &c : m_interpreter.GetUserCommands()) in HandleArgumentCompletion()
1679 if (cmd_name.empty() || !m_interpreter.HasUserCommands() || in DoExecute()
1680 !m_interpreter.UserCommandExists(cmd_name)) { in DoExecute()
1686 m_interpreter.RemoveUser(cmd_name); in DoExecute()