Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DJSON.cpp806 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 …]
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DJSON.h1057 llvm::StringRef PendingComment; variable