Searched refs:ThisDecl (Results 1 – 7 of 7) sorted by relevance
| /openbsd-src/gnu/llvm/clang/lib/Parse/ |
| H A D | ParseDeclCXX.cpp | 2315 Decl *ThisDecl) { in HandleMemberFunctionDeclDelays() argument 2335 auto LateMethod = new LateParsedMethodDeclaration(this, ThisDecl); in HandleMemberFunctionDeclDelays() 3015 NamedDecl *ThisDecl = nullptr; in ParseCXXClassMemberDeclaration() local 3029 ThisDecl = Actions.ActOnFriendFunctionDecl(getCurScope(), DeclaratorInfo, in ParseCXXClassMemberDeclaration() 3032 ThisDecl = Actions.ActOnCXXMemberDeclarator( in ParseCXXClassMemberDeclaration() 3037 ThisDecl ? dyn_cast<VarTemplateDecl>(ThisDecl) : nullptr) in ParseCXXClassMemberDeclaration() 3040 ThisDecl = VT->getTemplatedDecl(); in ParseCXXClassMemberDeclaration() 3042 if (ThisDecl) in ParseCXXClassMemberDeclaration() 3043 Actions.ProcessDeclAttributeList(getCurScope(), ThisDecl, AccessAttrs); in ParseCXXClassMemberDeclaration() 3058 if (ThisDecl && PureSpecLoc.isValid()) in ParseCXXClassMemberDeclaration() [all …]
|
| H A D | ParseDecl.cpp | 2182 Decl *ThisDecl = Actions.ActOnDeclarator(getCurScope(), D); in ParseDeclGroup() local 2184 Actions.ActOnCXXForRangeDecl(ThisDecl); in ParseDeclGroup() 2187 if (auto *VD = dyn_cast_or_null<VarDecl>(ThisDecl)) in ParseDeclGroup() 2190 Actions.FinalizeDeclaration(ThisDecl); in ParseDeclGroup() 2191 D.complete(ThisDecl); in ParseDeclGroup() 2192 return Actions.FinalizeDeclaratorGroup(getCurScope(), DS, ThisDecl); in ParseDeclGroup() 2249 Decl *ThisDecl = ParseDeclarationAfterDeclarator(D); in ParseDeclGroup() local 2250 D.complete(ThisDecl); in ParseDeclGroup() 2251 if (ThisDecl) in ParseDeclGroup() 2252 DeclsInGroup.push_back(ThisDecl); in ParseDeclGroup() [all …]
|
| H A D | ParseTemplate.cpp | 359 Decl *ThisDecl = ParseDeclarationAfterDeclarator(DeclaratorInfo, in ParseSingleDeclarationAfterTemplate() local 366 return ThisDecl; in ParseSingleDeclarationAfterTemplate() 372 ParseLexedAttributeList(LateParsedAttrs, ThisDecl, true, false); in ParseSingleDeclarationAfterTemplate() 373 DeclaratorInfo.complete(ThisDecl); in ParseSingleDeclarationAfterTemplate() 374 return ThisDecl; in ParseSingleDeclarationAfterTemplate()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGCXXABI.cpp | 126 auto *ThisDecl = ImplicitParamDecl::Create( in buildThisParam() local 130 params.push_back(ThisDecl); in buildThisParam() 131 CGF.CXXABIThisDecl = ThisDecl; in buildThisParam()
|
| /openbsd-src/gnu/llvm/clang/lib/Index/ |
| H A D | CommentToXML.cpp | 576 void getSourceTextOfDeclaration(const DeclInfo *ThisDecl, in getSourceTextOfDeclaration() argument 578 ASTContext &Context = ThisDecl->CurrentDecl->getASTContext(); in getSourceTextOfDeclaration() 585 ThisDecl->CurrentDecl->print(OS, PPolicy, in getSourceTextOfDeclaration()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Parse/ |
| H A D | Parser.h | 3219 Decl *ThisDecl);
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaDecl.cpp | 14252 void Sema::FinalizeDeclaration(Decl *ThisDecl) { in FinalizeDeclaration() argument 14254 ParsingInitForAutoVars.erase(ThisDecl); in FinalizeDeclaration() 14256 VarDecl *VD = dyn_cast_or_null<VarDecl>(ThisDecl); in FinalizeDeclaration() 14285 if (auto *DD = dyn_cast<DecompositionDecl>(ThisDecl)) { in FinalizeDeclaration() 14379 for (const auto *I : ThisDecl->specific_attrs<TypeTagForDatatypeAttr>()) { in FinalizeDeclaration()
|