Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DJSON.cpp788 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()
856 assert(PendingComment.empty()); in objectEnd()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h987 llvm::StringRef PendingComment; variable