Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DCommentSema.cpp72 if (ThisDeclInfo) { in actOnBlockCommandFinish()
794 if (!ThisDeclInfo) in involvesFunctionType()
802 if (!ThisDeclInfo) in isFunctionDecl()
815 if (!ThisDeclInfo) in isFunctionOrMethodVariadic()
828 if (!ThisDeclInfo) in isFunctionPointerVarDecl()
842 if (!ThisDeclInfo) in isObjCPropertyDecl()
850 if (!ThisDeclInfo) in isTemplateOrSpecialization()
858 if (!ThisDeclInfo) in isRecordLikeDecl()
867 if (!ThisDeclInfo) in isUnionDecl()
884 if (!ThisDeclInfo) in isClassOrStructDecl()
[all …]
H A DASTContext.cpp539 auto *ThisDeclInfo = new (*this) comments::DeclInfo; in cloneFullComment() local
540 ThisDeclInfo->CommentDecl = D; in cloneFullComment()
541 ThisDeclInfo->IsFilled = false; in cloneFullComment()
542 ThisDeclInfo->fill(); in cloneFullComment()
543 ThisDeclInfo->CommentDecl = FC->getDecl(); in cloneFullComment()
544 if (!ThisDeclInfo->TemplateParameters) in cloneFullComment()
545 ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters; in cloneFullComment()
548 ThisDeclInfo); in cloneFullComment()
/llvm-project-15.0.7/clang/include/clang/AST/
H A DComment.h1079 DeclInfo *ThisDeclInfo; variable
1084 Blocks(Blocks), ThisDeclInfo(D) { in FullComment()
1106 return ThisDeclInfo->CommentDecl; in getDecl()
1110 if (!ThisDeclInfo->IsFilled) in getDeclInfo()
1111 ThisDeclInfo->fill(); in getDeclInfo()
1112 return ThisDeclInfo; in getDeclInfo()
H A DCommentSema.h49 DeclInfo *ThisDeclInfo; variable