Lines Matching refs:CommandHistory
17 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()
99 void CommandHistory::Dump(Stream &stream, size_t start_idx, in Dump()