Lines Matching defs:Comments
283 // as a semicolon. Comments after the last entry that have been determined to
4808 const ArrayRef<FormatToken *> &Comments, const FormatToken *NextTok) {
4812 // Define a trail of Comments to be a nonempty proper postfix of Comments such
4827 if (Comments.empty())
4834 for (unsigned i = Comments.size() - 1; i > 0; --i) {
4835 if (Comments[i]->OriginalColumn == NextTok->OriginalColumn) {
4841 for (unsigned i = 0, e = Comments.size(); i < e; ++i) {
4842 FormatToken *FormatTok = Comments[i];
4861 SmallVector<FormatToken *, 1> Comments;
4902 distributeComments(Comments, FormatTok);
4903 Comments.clear();
4912 // Comments stored before the preprocessor directive need to be output
5015 distributeComments(Comments, FormatTok);
5016 Comments.clear();
5020 Comments.push_back(FormatTok);
5023 distributeComments(Comments, nullptr);
5024 Comments.clear();