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

References

tools/clang/tools/extra/clang-tidy/ClangTidyDiagnosticConsumer.cpp
  305   while (*P != '\0' && *P != '\r' && *P != '\n')
  305   while (*P != '\0' && *P != '\r' && *P != '\n')
  305   while (*P != '\0' && *P != '\r' && *P != '\n')
  306     ++P;
  307   StringRef RestOfLine(CharacterData, P - CharacterData + 1);
  314   if (Invalid || P == BufBegin)
  318   P = CharacterData;
  319   while (P != BufBegin && *P != '\n')
  319   while (P != BufBegin && *P != '\n')
  320     --P;
  323   if (P == BufBegin)
  327   --P;
  328   const char *LineEnd = P;
  331   while (P != BufBegin && *P != '\n')
  331   while (P != BufBegin && *P != '\n')
  332     --P;
  334   RestOfLine = StringRef(P, LineEnd - P + 1);
  334   RestOfLine = StringRef(P, LineEnd - P + 1);