Home
last modified time | relevance | path

Searched refs:ThisDeclInfo (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp32 PP(PP), ThisDeclInfo(nullptr), BriefCommand(nullptr), in Sema()
40 ThisDeclInfo = new (Allocator) DeclInfo; in setDecl()
41 ThisDeclInfo->CommentDecl = D; in setDecl()
42 ThisDeclInfo->IsFilled = false; in setDecl()
72 if (ThisDeclInfo) { in actOnBlockCommandFinish()
317 ThisDeclInfo->TemplateParameters; in actOnTParamCommandParamNameArg()
521 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); in actOnFullComment()
560 assert(ThisDeclInfo && "should not call this check on a bare comment"); in checkReturnsCommand()
567 assert(!ThisDeclInfo->ReturnType.isNull() && in checkReturnsCommand()
569 if (ThisDeclInfo->ReturnType->isVoidType()) { in checkReturnsCommand()
[all …]
H A DASTContext.cpp595 auto *ThisDeclInfo = new (*this) comments::DeclInfo; in cloneFullComment() local
596 ThisDeclInfo->CommentDecl = D; in cloneFullComment()
597 ThisDeclInfo->IsFilled = false; in cloneFullComment()
598 ThisDeclInfo->fill(); in cloneFullComment()
599 ThisDeclInfo->CommentDecl = FC->getDecl(); in cloneFullComment()
600 if (!ThisDeclInfo->TemplateParameters) in cloneFullComment()
601 ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters; in cloneFullComment()
604 ThisDeclInfo); in cloneFullComment()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCommentSema.h49 DeclInfo *ThisDeclInfo; variable