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 422 comments::DeclInfo *ThisDeclInfo = new (*this) comments::DeclInfo;
423 ThisDeclInfo->CommentDecl = D;
424 ThisDeclInfo->IsFilled = false;
425 ThisDeclInfo->fill();
426 ThisDeclInfo->CommentDecl = FC->getDecl();
427 if (!ThisDeclInfo->TemplateParameters)
428 ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters;
431 ThisDeclInfo);
    [all...]
  /external/clang/include/clang/AST/
Comment.h 1099 DeclInfo *ThisDeclInfo;
1104 Blocks(Blocks), ThisDeclInfo(D) {
1126 return ThisDeclInfo->CommentDecl;
1130 if (!ThisDeclInfo->IsFilled)
1131 ThisDeclInfo->fill();
1132 return ThisDeclInfo;
CommentSema.h 50 DeclInfo *ThisDeclInfo;
226 /// \c ThisDeclInfo->ThisDecl into \c ThisDeclInfo members.

Completed in 113 milliseconds