Lines Matching refs:CommandHistory
16 CommandHistory::CommandHistory() : m_mutex(), m_history() {} in CommandHistory() function in CommandHistory
18 CommandHistory::~CommandHistory() {} in ~CommandHistory()
20 size_t CommandHistory::GetSize() const { in GetSize()
25 bool CommandHistory::IsEmpty() const { in IsEmpty()
31 CommandHistory::FindString(llvm::StringRef input_str) const { in FindString()
64 llvm::StringRef CommandHistory::GetStringAtIndex(size_t idx) const { in GetStringAtIndex()
71 llvm::StringRef CommandHistory::operator[](size_t idx) const { in operator []()
75 llvm::StringRef CommandHistory::GetRecentmostString() const { in GetRecentmostString()
82 void CommandHistory::AppendString(llvm::StringRef str, bool reject_if_dupe) { in AppendString()
93 void CommandHistory::Clear() { in Clear()
98 void CommandHistory::Dump(Stream &stream, size_t start_idx, in Dump()