Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Interpreter/
DCommandHistory.cpp16 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()
[all …]
DCMakeLists.txt11 CommandHistory.cpp
DCommandInterpreter.cpp1687 else if (command_string[non_space] == CommandHistory::g_repeat_char) { in HandleCommand()
1869 if (first_arg.front() == CommandHistory::g_repeat_char) { in HandleCompletion()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandHistory.h21 class CommandHistory {
23 CommandHistory();
25 ~CommandHistory();
49 CommandHistory(const CommandHistory &) = delete;
50 const CommandHistory &operator=(const CommandHistory &) = delete;
DCommandInterpreter.h472 CommandHistory &GetCommandHistory() { return m_command_history; } in GetCommandHistory()
633 CommandHistory m_command_history;
/external/tensorflow/tensorflow/python/debug/cli/
Ddebugger_cli_common_test.py934 self._cmd_hist = debugger_cli_common.CommandHistory(
1018 cmd_hist_2 = debugger_cli_common.CommandHistory(
1035 debugger_cli_common.CommandHistory(
1049 cmd_hist_2 = debugger_cli_common.CommandHistory(
1058 cmd_hist_3 = debugger_cli_common.CommandHistory(
Ddebugger_cli_common.py1004 class CommandHistory(object): class
Dcurses_ui.py296 self._command_history_store = debugger_cli_common.CommandHistory()
Dcurses_ui_test.py93 self._command_history_store = debugger_cli_common.CommandHistory(
/external/llvm-project/lldb/source/Commands/
DCommandObjectSession.cpp154 const CommandHistory &history(m_interpreter.GetCommandHistory()); in DoExecute()
DCommandObjectExpression.cpp651 CommandHistory &history = m_interpreter.GetCommandHistory(); in DoExecute()