Home
last modified time | relevance | path

Searched refs:EndCommentNextTok (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DNamespaceEndCommentsFixer.cpp270 const FormatToken *EndCommentNextTok = EndCommentPrevTok->Next; in analyze() local
271 if (EndCommentNextTok && EndCommentNextTok->is(tok::comment)) in analyze()
272 EndCommentNextTok = EndCommentNextTok->Next; in analyze()
273 if (!EndCommentNextTok && I + 1 < E) in analyze()
274 EndCommentNextTok = AnnotatedLines[I + 1]->First; in analyze()
275 bool AddNewline = EndCommentNextTok && in analyze()
276 EndCommentNextTok->NewlinesBefore == 0 && in analyze()
277 EndCommentNextTok->isNot(tok::eof); in analyze()