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

References

tools/lldb/source/Utility/StringList.cpp
  161     if (count == 0) {
  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')
  172       count++; // Skip an extra newline char for the DOS newline
  173     count++;   // Skip the newline character
  174     p += count;