Home
last modified time | relevance | path

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

/external/lldb/source/Interpreter/
DCommandInterpreter.cpp1259 const size_t first_space_pos = command_string.find_first_of (k_white_space); in ExtractCommand() local
1260 if (first_space_pos == std::string::npos) in ExtractCommand()
1267 command.assign (command_string, 0, first_space_pos); in ExtractCommand()
1268 … command_string.erase(0, command_string.find_first_not_of (k_white_space, first_space_pos)); in ExtractCommand()