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

References

tools/lldb/source/Utility/StringList.cpp
  159   while (p < end) {
  160     size_t count = strcspn(p, k_newline_chars);
  162       if (p[count] == '\r' || p[count] == '\n')
  162       if (p[count] == '\r' || p[count] == '\n')
  167       if (p + count > end)
  168         count = end - p;
  169       m_strings.push_back(std::string(p, count));
  171     if (p[count] == '\r' && p[count + 1] == '\n')
  171     if (p[count] == '\r' && p[count + 1] == '\n')
  174     p += count;