Home
last modified time | relevance | path

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

/external/clang/lib/AST/
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()
318 ThisDeclInfo->TemplateParameters; in actOnTParamCommandParamNameArg()
546 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); in actOnFullComment()
585 assert(ThisDeclInfo && "should not call this check on a bare comment"); in checkReturnsCommand()
588 if (ThisDeclInfo->ReturnType->isVoidType()) { in checkReturnsCommand()
590 switch (ThisDeclInfo->CommentDecl->getKind()) { in checkReturnsCommand()
[all …]
DASTContext.cpp423 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo; in cloneFullComment() local
424 ThisDeclInfo->CommentDecl = D; in cloneFullComment()
425 ThisDeclInfo->IsFilled = false; in cloneFullComment()
426 ThisDeclInfo->fill(); in cloneFullComment()
427 ThisDeclInfo->CommentDecl = FC->getDecl(); in cloneFullComment()
428 if (!ThisDeclInfo->TemplateParameters) in cloneFullComment()
429 ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters; in cloneFullComment()
432 ThisDeclInfo); in cloneFullComment()
/external/clang/include/clang/AST/
DComment.h1099 DeclInfo *ThisDeclInfo; variable
1104 Blocks(Blocks), ThisDeclInfo(D) { in FullComment()
1126 return ThisDeclInfo->CommentDecl; in getDecl()
1130 if (!ThisDeclInfo->IsFilled) in getDeclInfo()
1131 ThisDeclInfo->fill(); in getDeclInfo()
1132 return ThisDeclInfo; in getDeclInfo()
DCommentSema.h50 DeclInfo *ThisDeclInfo; variable