Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp72 if (ThisDeclInfo) { in actOnBlockCommandFinish()
793 if (!ThisDeclInfo) in involvesFunctionType()
801 if (!ThisDeclInfo) in isFunctionDecl()
814 if (!ThisDeclInfo) in isFunctionOrMethodVariadic()
827 if (!ThisDeclInfo) in isFunctionPointerVarDecl()
841 if (!ThisDeclInfo) in isObjCPropertyDecl()
849 if (!ThisDeclInfo) in isTemplateOrSpecialization()
857 if (!ThisDeclInfo) in isRecordLikeDecl()
866 if (!ThisDeclInfo) in isUnionDecl()
883 if (!ThisDeclInfo) in isClassOrStructDecl()
[all …]
H A DASTContext.cpp559 auto *ThisDeclInfo = new (*this) comments::DeclInfo; in cloneFullComment() local
560 ThisDeclInfo->CommentDecl = D; in cloneFullComment()
561 ThisDeclInfo->IsFilled = false; in cloneFullComment()
562 ThisDeclInfo->fill(); in cloneFullComment()
563 ThisDeclInfo->CommentDecl = FC->getDecl(); in cloneFullComment()
564 if (!ThisDeclInfo->TemplateParameters) in cloneFullComment()
565 ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters; in cloneFullComment()
568 ThisDeclInfo); in cloneFullComment()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DComment.h1085 DeclInfo *ThisDeclInfo;
1090 Blocks(Blocks), ThisDeclInfo(D) {
1112 return ThisDeclInfo->CommentDecl;
1116 if (!ThisDeclInfo->IsFilled)
1117 ThisDeclInfo->fill();
1118 return ThisDeclInfo;
H A DCommentSema.h49 DeclInfo *ThisDeclInfo; variable