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

References

tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
  238     if (EndCommentNextTok && EndCommentNextTok->is(tok::comment))
  238     if (EndCommentNextTok && EndCommentNextTok->is(tok::comment))
  239       EndCommentNextTok = EndCommentNextTok->Next;
  239       EndCommentNextTok = EndCommentNextTok->Next;
  240     if (!EndCommentNextTok && I + 1 < E)
  241       EndCommentNextTok = AnnotatedLines[I + 1]->First;
  242     bool AddNewline = EndCommentNextTok &&
  243                       EndCommentNextTok->NewlinesBefore == 0 &&
  244                       EndCommentNextTok->isNot(tok::eof);