Home
last modified time | relevance | path

Searched refs:m_command (Results 1 – 3 of 3) sorted by relevance

/src/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h121 return m_command.substr(0, GetRawCursorPos()); in GetRawLine()
130 llvm::StringRef GetRawLineWithUnusedSuffix() const { return m_command; } in GetRawLineWithUnusedSuffix()
223 llvm::StringRef m_command;
/src/contrib/llvm-project/lldb/source/API/
H A DSBPlatform.cpp60 m_command = shell_command.str(); in PlatformShellCommand()
65 m_command = shell_command.str(); in PlatformShellCommand()
71 std::string m_command; member
225 if (m_opaque_ptr->m_command.empty()) in GetCommand()
227 return ConstString(m_opaque_ptr->m_command.c_str()).GetCString(); in GetCommand()
234 m_opaque_ptr->m_command = shell_command; in SetCommand()
236 m_opaque_ptr->m_command.clear(); in SetCommand()
/src/contrib/llvm-project/lldb/source/Utility/
H A DCompletionRequest.cpp17 : m_command(command_line), m_raw_cursor_pos(raw_cursor_pos), in CompletionRequest()