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

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
CommentSema.h 49 DeclInfo *ThisDeclInfo;
232 /// \c ThisDeclInfo->ThisDecl into \c ThisDeclInfo members.
Comment.h 1093 DeclInfo *ThisDeclInfo;
1098 Blocks(Blocks), ThisDeclInfo(D) {
1120 return ThisDeclInfo->CommentDecl;
1124 if (!ThisDeclInfo->IsFilled)
1125 ThisDeclInfo->fill();
1126 return ThisDeclInfo;
  /src/external/apache2/llvm/dist/clang/lib/AST/
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);

Completed in 35 milliseconds