Searched refs:CommandHistory (Results 1 – 7 of 7) sorted by relevance
17 CommandHistory::CommandHistory() : m_mutex(), m_history() {} in CommandHistory() function in CommandHistory19 CommandHistory::~CommandHistory() {} in ~CommandHistory()21 size_t CommandHistory::GetSize() const { in GetSize()26 bool CommandHistory::IsEmpty() const { in IsEmpty()32 CommandHistory::FindString(llvm::StringRef input_str) const { in FindString()65 llvm::StringRef CommandHistory::GetStringAtIndex(size_t idx) const { in GetStringAtIndex()72 llvm::StringRef CommandHistory::operator[](size_t idx) const { in operator []()76 llvm::StringRef CommandHistory::GetRecentmostString() const { in GetRecentmostString()83 void CommandHistory::AppendString(llvm::StringRef str, bool reject_if_dupe) { in AppendString()94 void CommandHistory::Clear() { in Clear()[all …]
1648 else if (command_string[non_space] == CommandHistory::g_repeat_char) { in HandleCommand()1846 else if (first_arg[0] == CommandHistory::g_repeat_char) { in HandleCompletion()
22 class CommandHistory {24 CommandHistory();26 ~CommandHistory();50 DISALLOW_COPY_AND_ASSIGN(CommandHistory);
445 const CommandHistory &GetCommandHistory() const { return m_command_history; } in GetCommandHistory()447 CommandHistory &GetCommandHistory() { return m_command_history; } in GetCommandHistory()593 CommandHistory m_command_history;
662 CommandHistory &history = m_interpreter.GetCommandHistory(); in DoExecute()
146 const CommandHistory &history(m_interpreter.GetCommandHistory()); in DoExecute()
251 SRCS+= Interpreter/CommandHistory.cpp