Home
last modified time | relevance | path

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

/external/lldb/source/Interpreter/
DCommandInterpreter.cpp1183 static const char *k_white_space = " \t\v"; variable
1190 size_t pos = s.find_first_not_of (k_white_space); in StripLeadingSpaces()
1252 … command_string.erase (0, command_string.find_first_not_of (k_white_space, end_quote_pos + 1)); in ExtractCommand()
1259 const size_t first_space_pos = command_string.find_first_of (k_white_space); in ExtractCommand()
1268 … command_string.erase(0, command_string.find_first_not_of (k_white_space, first_space_pos)); in ExtractCommand()
DArgs.cpp912 static const char *k_white_space = " \t\v"; in StripSpaces() local
917 size_t pos = s.find_first_not_of (k_white_space); in StripSpaces()
926 size_t rpos = s.find_last_not_of(k_white_space); in StripSpaces()