Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp809 PendingComment = Comment; in comment()
813 if (PendingComment.empty()) in flushComment()
817 while (!PendingComment.empty()) { in flushComment()
818 auto Pos = PendingComment.find("*/"); in flushComment()
820 OS << PendingComment; in flushComment()
821 PendingComment = ""; in flushComment()
823 OS << PendingComment.take_front(Pos) << "* /"; in flushComment()
824 PendingComment = PendingComment.drop_front(Pos + 2); in flushComment()
858 assert(PendingComment.empty()); in arrayEnd()
877 assert(PendingComment.empty()); in objectEnd()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h1078 llvm::StringRef PendingComment; variable