HomeSort by: relevance | last modified time | path
    Searched refs:ThisDeclInfo (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/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) {
320 ThisDeclInfo->TemplateParameters;
548 FullComment *FC = new (Allocator) FullComment(Blocks, ThisDeclInfo);
587 assert(ThisDeclInfo && "should not call this check on a bare comment");
594 assert(!ThisDeclInfo->ReturnType.isNull() &&
596 if (ThisDeclInfo->ReturnType->isVoidType())
    [all...]
ASTContext.cpp 533 auto *ThisDeclInfo = new (*this) comments::DeclInfo;
534 ThisDeclInfo->CommentDecl = D;
535 ThisDeclInfo->IsFilled = false;
536 ThisDeclInfo->fill();
537 ThisDeclInfo->CommentDecl = FC->getDecl();
538 if (!ThisDeclInfo->TemplateParameters)
539 ThisDeclInfo->TemplateParameters = FC->getDeclInfo()->TemplateParameters;
542 ThisDeclInfo);
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Comment.h 1093 DeclInfo *ThisDeclInfo;
1098 Blocks(Blocks), ThisDeclInfo(D) {
1120 return ThisDeclInfo->CommentDecl;
1124 if (!ThisDeclInfo->IsFilled)
1125 ThisDeclInfo->fill();
1126 return ThisDeclInfo;
CommentSema.h 49 DeclInfo *ThisDeclInfo;
232 /// \c ThisDeclInfo->ThisDecl into \c ThisDeclInfo members.

Completed in 38 milliseconds