Searched refs:ThisDecl (Results 1 – 7 of 7) sorted by relevance
/external/clang/lib/Parse/ |
D | ParseDeclCXX.cpp | 1949 Decl *ThisDecl) { in HandleMemberFunctionDeclDelays() argument 1970 auto LateMethod = new LateParsedMethodDeclaration(this, ThisDecl); in HandleMemberFunctionDeclDelays() 2563 NamedDecl *ThisDecl = nullptr; in ParseCXXClassMemberDeclaration() local 2576 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo, in ParseCXXClassMemberDeclaration() 2579 ThisDecl = Actions.ActOnCXXMemberDeclarator(getCurScope(), AS, in ParseCXXClassMemberDeclaration() 2586 ThisDecl ? dyn_cast<VarTemplateDecl>(ThisDecl) : nullptr) in ParseCXXClassMemberDeclaration() 2589 ThisDecl = VT->getTemplatedDecl(); in ParseCXXClassMemberDeclaration() 2591 if (ThisDecl && AccessAttrs) in ParseCXXClassMemberDeclaration() 2592 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs); in ParseCXXClassMemberDeclaration() 2604 if (ThisDecl && PureSpecLoc.isValid()) in ParseCXXClassMemberDeclaration() [all …]
|
D | ParseDecl.cpp | 1799 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D); in ParseDeclGroup() local 1801 Actions.ActOnCXXForRangeDecl(ThisDecl); in ParseDeclGroup() 1802 Actions.FinalizeDeclaration(ThisDecl); in ParseDeclGroup() 1803 D.complete(ThisDecl); in ParseDeclGroup() 1804 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl); in ParseDeclGroup() 1851 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D); in ParseDeclGroup() local 1852 D.complete(ThisDecl); in ParseDeclGroup() 1853 if (ThisDecl) in ParseDeclGroup() 1854 DeclsInGroup.push_back(ThisDecl); in ParseDeclGroup() 1930 Decl *ThisDecl = nullptr; in ParseDeclarationAfterDeclaratorAndAttributes() local [all …]
|
D | ParseTemplate.cpp | 298 Decl *ThisDecl = ParseDeclarationAfterDeclarator(DeclaratorInfo, in ParseSingleDeclarationAfterTemplate() local 305 return ThisDecl; in ParseSingleDeclarationAfterTemplate() 311 ParseLexedAttributeList(LateParsedAttrs, ThisDecl, true, false); in ParseSingleDeclarationAfterTemplate() 312 DeclaratorInfo.complete(ThisDecl); in ParseSingleDeclarationAfterTemplate() 313 return ThisDecl; in ParseSingleDeclarationAfterTemplate()
|
/external/clang/lib/CodeGen/ |
D | CGCXXABI.cpp | 161 ImplicitParamDecl *ThisDecl in buildThisParam() local 165 params.push_back(ThisDecl); in buildThisParam() 166 CGF.CXXABIThisDecl = ThisDecl; in buildThisParam()
|
/external/clang/lib/Index/ |
D | CommentToXML.cpp | 581 void getSourceTextOfDeclaration(const DeclInfo *ThisDecl, in getSourceTextOfDeclaration() argument 583 ASTContext &Context = ThisDecl->CurrentDecl->getASTContext(); in getSourceTextOfDeclaration() 589 ThisDecl->CurrentDecl->print(OS, PPolicy, in getSourceTextOfDeclaration()
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 2404 Decl *ThisDecl);
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 10127 Sema::FinalizeDeclaration(Decl *ThisDecl) { in FinalizeDeclaration() argument 10129 ParsingInitForAutoVars.erase(ThisDecl); in FinalizeDeclaration() 10131 VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl); in FinalizeDeclaration() 10230 for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) { in FinalizeDeclaration()
|