Searched refs:PendingComment (Results 1 – 2 of 2) sorted by relevance
787 assert(PendingComment.empty() && "Only one comment per value!"); in comment()788 PendingComment = Comment; in comment()792 if (PendingComment.empty()) in flushComment()796 while (!PendingComment.empty()) { in flushComment()797 auto Pos = PendingComment.find("*/"); in flushComment()799 OS << PendingComment; in flushComment()800 PendingComment = ""; in flushComment()802 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()803 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()837 assert(PendingComment.empty()); in arrayEnd()[all …]
987 llvm::StringRef PendingComment; variable