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

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_suppressions.cpp
  120   while (line) {
  121     while (line[0] == ' ' || line[0] == '\t')
  121     while (line[0] == ' ' || line[0] == '\t')
  122       line++;
  123     const char *end = internal_strchr(line, '\n');
  125       end = line + internal_strlen(line);
  125       end = line + internal_strlen(line);
  126     if (line != end && line[0] != '#') {
  126     if (line != end && line[0] != '#') {
  128       while (line != end2 &&
  133         const char *next_char = StripPrefix(line, suppression_types_[type]);
  135           line = ++next_char;
  145       s.templ = (char*)InternalAlloc(end2 - line + 1);
  146       internal_memcpy(s.templ, line, end2 - line);
  146       internal_memcpy(s.templ, line, end2 - line);
  147       s.templ[end2 - line] = 0;
  153     line = end + 1;