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

References

tools/lldb/source/Interpreter/CommandInterpreter.cpp
 2506     std::size_t first_newline = this_line.find_first_of("\n");
 2510     if (this_line.size() != help_text.size())
 2511       last_space = this_line.find_last_of(" \t");
 2514     this_line = this_line.substr(0, std::min(first_newline, last_space));
 2514     this_line = this_line.substr(0, std::min(first_newline, last_space));
 2515     strm.PutCString(this_line);
 2519     help_text = help_text.drop_front(this_line.size()).ltrim();