Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DJSON.cpp787 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 …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/
H A DJSON.h987 llvm::StringRef PendingComment; variable