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(NULL), BriefCommand(NULL), HeaderfileCommand(NULL) { in Sema()
39 ThisDeclInfo = new (Allocator) DeclInfo; in setDecl()
40 ThisDeclInfo->CommentDecl = D; in setDecl()
41 ThisDeclInfo->IsFilled = false; in setDecl()
329 ThisDeclInfo->TemplateParameters; in actOnTParamCommandParamNameArg()
554 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo); in actOnFullComment()
581 if (ThisDeclInfo->ResultType->isVoidType()) { in checkReturnsCommand()
583 switch (ThisDeclInfo->CommentDecl->getKind()) { in checkReturnsCommand()
585 if (ThisDeclInfo->IsObjCMethod) in checkReturnsCommand()
658 const Decl *D = ThisDeclInfo->CommentDecl; in checkDeprecatedCommand()
[all …]
DASTContext.cpp405 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo; in cloneFullComment() local
406 ThisDeclInfo->CommentDecl = D; in cloneFullComment()
407 ThisDeclInfo->IsFilled = false; in cloneFullComment()
408 ThisDeclInfo->fill(); in cloneFullComment()
409 ThisDeclInfo->CommentDecl = FC->getDecl(); in cloneFullComment()
412 ThisDeclInfo); in cloneFullComment()
/external/clang/include/clang/AST/
DComment.h1078 DeclInfo *ThisDeclInfo; variable
1083 Blocks(Blocks), ThisDeclInfo(D) { in FullComment()
1105 return ThisDeclInfo->CommentDecl; in getDecl()
1109 if (!ThisDeclInfo->IsFilled) in getDeclInfo()
1110 ThisDeclInfo->fill(); in getDeclInfo()
1111 return ThisDeclInfo; in getDeclInfo()
DCommentSema.h50 DeclInfo *ThisDeclInfo; variable