Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp414 auto DeclComment = DeclRawComments.find(D); in getRawCommentForAnyRedecl()
415 if (DeclComment != DeclRawComments.end()) { in getRawCommentForAnyRedecl()
432 auto CommentAtRedecl = DeclRawComments.find(RedeclComment->second); in getRawCommentForAnyRedecl()
433 assert(CommentAtRedecl != DeclRawComments.end() && in getRawCommentForAnyRedecl()
472 DeclRawComments.try_emplace(&OriginalD, &Comment); in cacheRawCommentForDecl()
537 if (DeclRawComments.count(D) > 0) in attachCommentsToJustParsedDecls()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h806 mutable llvm::DenseMap<const Decl *, const RawComment *> DeclRawComments; variable