Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Support/
H A DJSON.cpp806 PendingComment = Comment; in comment()
810 if (PendingComment.empty()) in flushComment()
814 while (!PendingComment.empty()) { in flushComment()
815 auto Pos = PendingComment.find("*/"); in flushComment()
817 OS << PendingComment; in flushComment()
818 PendingComment = ""; in flushComment()
820 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()
821 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()
855 assert(PendingComment.empty()); in arrayEnd()
874 assert(PendingComment.empty()); in objectEnd()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DJSON.h1056 llvm::StringRef PendingComment; variable