reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Interpreter/CommandInterpreter.cpp
 1317   StripLeadingSpaces(command_string);
 1322   if (!command_string.empty()) {
 1323     const char first_char = command_string[0];
 1326       const size_t end_quote_pos = command_string.find(quote_char, 1);
 1328         command.swap(command_string);
 1329         command_string.erase();
 1331         command.assign(command_string, 1, end_quote_pos - 1);
 1332         if (end_quote_pos + 1 < command_string.size())
 1333           command_string.erase(0, command_string.find_first_not_of(
 1333           command_string.erase(0, command_string.find_first_not_of(
 1336           command_string.erase();
 1340           command_string.find_first_of(k_white_space);
 1342         command.swap(command_string);
 1343         command_string.erase();
 1345         command.assign(command_string, 0, first_space_pos);
 1346         command_string.erase(0, command_string.find_first_not_of(
 1346         command_string.erase(0, command_string.find_first_not_of(