Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp397 auto DeclComment = DeclRawComments.find(D); in getRawCommentForAnyRedecl()
398 if (DeclComment != DeclRawComments.end()) { in getRawCommentForAnyRedecl()
415 auto CommentAtRedecl = DeclRawComments.find(RedeclComment->second); in getRawCommentForAnyRedecl()
416 assert(CommentAtRedecl != DeclRawComments.end() && in getRawCommentForAnyRedecl()
458 DeclRawComments.try_emplace(&OriginalD, &Comment); in cacheRawCommentForDecl()
525 if (DeclRawComments.count(D) > 0) in attachCommentsToJustParsedDecls()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DASTContext.h829 mutable llvm::DenseMap<const Decl *, const RawComment *> DeclRawComments; variable