Searched refs:PendingComment (Results 1 – 2 of 2) sorted by relevance
806 assert(PendingComment.empty() && "Only one comment per value!"); in comment()807 PendingComment = Comment; in comment()811 if (PendingComment.empty()) in flushComment()815 while (!PendingComment.empty()) { in flushComment()816 auto Pos = PendingComment.find("*/"); in flushComment()818 OS << PendingComment; in flushComment()819 PendingComment = ""; in flushComment()821 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()822 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()856 assert(PendingComment.empty()); in arrayEnd()[all …]
1057 llvm::StringRef PendingComment; variable