Home
last modified time | relevance | path

Searched refs:CommandHistory (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandHistory.cpp17 CommandHistory::CommandHistory() : m_mutex(), m_history() {} in CommandHistory() function in CommandHistory
19 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 …]
H A DCommandInterpreter.cpp1648 else if (command_string[non_space] == CommandHistory::g_repeat_char) { in HandleCommand()
1846 else if (first_arg[0] == CommandHistory::g_repeat_char) { in HandleCompletion()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandHistory.h22 class CommandHistory {
24 CommandHistory();
26 ~CommandHistory();
50 DISALLOW_COPY_AND_ASSIGN(CommandHistory);
H A DCommandInterpreter.h445 const CommandHistory &GetCommandHistory() const { return m_command_history; } in GetCommandHistory()
447 CommandHistory &GetCommandHistory() { return m_command_history; } in GetCommandHistory()
593 CommandHistory m_command_history;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectExpression.cpp662 CommandHistory &history = m_interpreter.GetCommandHistory(); in DoExecute()
H A DCommandObjectCommands.cpp146 const CommandHistory &history(m_interpreter.GetCommandHistory()); in DoExecute()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile251 SRCS+= Interpreter/CommandHistory.cpp