Searched refs:PendingComment (Results 1 – 2 of 2) sorted by relevance
804 assert(PendingComment.empty() && "Only one comment per value!"); in comment()805 PendingComment = Comment; in comment()809 if (PendingComment.empty()) in flushComment()813 while (!PendingComment.empty()) { in flushComment()814 auto Pos = PendingComment.find("*/"); in flushComment()816 OS << PendingComment; in flushComment()817 PendingComment = ""; in flushComment()819 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()820 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()854 assert(PendingComment.empty()); in arrayEnd()[all …]
1080 llvm::StringRef PendingComment; variable