Home
last modified time | relevance | path

Searched refs:OrderedComments (Results 1 – 4 of 4) sorted by relevance

/external/llvm-project/clang/lib/AST/
DRawCommentList.cpp291 if (OrderedComments[CommentFile].empty()) { in addComment()
292 OrderedComments[CommentFile][CommentOffset] = in addComment()
297 const RawComment &C1 = *OrderedComments[CommentFile].rbegin()->second; in addComment()
320 *OrderedComments[CommentFile].rbegin()->second = in addComment()
323 OrderedComments[CommentFile][CommentOffset] = in addComment()
330 auto CommentsInFile = OrderedComments.find(File); in getCommentsInFile()
331 if (CommentsInFile == OrderedComments.end()) in getCommentsInFile()
337 bool RawCommentList::empty() const { return OrderedComments.empty(); } in empty()
/external/llvm-project/clang/include/clang/AST/
DRawCommentList.h200 llvm::DenseMap<FileID, std::map<unsigned, RawComment *>> OrderedComments; variable
/external/llvm-project/clang/lib/Serialization/
DASTWriter.cpp2966 for (const auto &FO : Context->Comments.OrderedComments) { in WriteComments()
DASTReader.cpp9248 Context.Comments.OrderedComments[Loc.first].emplace(Loc.second, C); in ReadComments()