HomeSort by relevance Sort by last modified time
    Searched refs:ThisDeclInfo (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/AST/
CommentSema.cpp 32 PP(PP), ThisDeclInfo(nullptr), BriefCommand(nullptr),
40 ThisDeclInfo = new (Allocator) DeclInfo;
41 ThisDeclInfo->CommentDecl = D;
42 ThisDeclInfo->IsFilled = false;
72 if (ThisDeclInfo) {
318 ThisDeclInfo->TemplateParameters;
548 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo);
587 assert(ThisDeclInfo && "should not call this check on a bare comment");
590 if (ThisDeclInfo->ReturnType->isVoidType()) {
592 switch (ThisDeclInfo->CommentDecl->getKind())
    [all...]
ASTContext.cpp 420 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
421 ThisDeclInfo->CommentDecl = D;
422 ThisDeclInfo->IsFilled = false;
423 ThisDeclInfo->fill();
424 ThisDeclInfo->CommentDecl = FC->getDecl();
425 if (!ThisDeclInfo->TemplateParameters)
426 ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters;
429 ThisDeclInfo);
    [all...]
  /external/clang/include/clang/AST/
Comment.h 1097 DeclInfo *ThisDeclInfo;
1102 Blocks(Blocks), ThisDeclInfo(D) {
1124 return ThisDeclInfo->CommentDecl;
1128 if (!ThisDeclInfo->IsFilled)
1129 ThisDeclInfo->fill();
1130 return ThisDeclInfo;
CommentSema.h 50 DeclInfo *ThisDeclInfo;
230 /// \c ThisDeclInfo->ThisDecl into \c ThisDeclInfo members.

Completed in 219 milliseconds