Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp391 auto DeclComment = DeclRawComments.find(D); in getRawCommentForAnyRedecl()
392 if (DeclComment != DeclRawComments.end()) { in getRawCommentForAnyRedecl()
409 auto CommentAtRedecl = DeclRawComments.find(RedeclComment->second); in getRawCommentForAnyRedecl()
410 assert(CommentAtRedecl != DeclRawComments.end() && in getRawCommentForAnyRedecl()
452 DeclRawComments.try_emplace(&OriginalD, &Comment); in cacheRawCommentForDecl()
519 if (DeclRawComments.count(D) > 0) in attachCommentsToJustParsedDecls()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTContext.h749 mutable llvm::DenseMap<const Decl *, const RawComment *> DeclRawComments; variable