Home
last modified time | relevance | path

Searched refs:command_string (Results 1 – 2 of 2) sorted by relevance

/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1519 llvm::StringRef &command_string) { in GetCommandObjectForCommand()
1525 size_t start = command_string.find_first_not_of(k_white_space); in GetCommandObjectForCommand()
1530 // Get the next word from command_string. in GetCommandObjectForCommand()
1531 end = command_string.find_first_of(k_white_space, start); in GetCommandObjectForCommand()
1533 end = command_string.size(); in GetCommandObjectForCommand()
1535 std::string(command_string.substr(start, end - start)); in GetCommandObjectForCommand()
1555 // a multi-word object, or we are at the end of the command_string, then in FindArgumentTerminator()
1559 end >= command_string.size()) in FindArgumentTerminator()
1562 start = command_string.find_first_not_of(k_white_space, end); in FindArgumentTerminator()
1568 command_string in FindArgumentTerminator()
1486 GetCommandObjectForCommand(llvm::StringRef & command_string) GetCommandObjectForCommand() argument
1573 ExtractCommand(std::string & command_string,std::string & command,std::string & suffix,char & quote_char) ExtractCommand() argument
1851 std::string command_string(command_line); HandleCommand() local
[all...]
/llvm-project/lldb/test/API/python_api/interpreter/
H A DTestRunCommandInterpreterAPI.py53 self, command_string, options=lldb.SBCommandInterpreterRunOptions() argument
59 input_handle.write(command_string)