Searched refs:ExtendingDecl (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | CheckExprLifetime.cpp | 1109 if (auto *ExtendingDecl = in checkExprLifetimeImpl() local 1113 << ExtendingDecl << DiagRange; in checkExprLifetimeImpl() 1114 SemaRef.Diag(ExtendingDecl->getLocation(), in checkExprLifetimeImpl() 1124 << ExtendingDecl << IsSubobjectMember << RK << DiagRange; in checkExprLifetimeImpl() 1130 SemaRef.Diag(ExtendingDecl->getLocation(), in checkExprLifetimeImpl()
|
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/ |
H A D | Compiler.h | 294 allocateLocal(DeclTy &&Decl, const ValueDecl *ExtendingDecl = nullptr); 432 void addExtended(const Scope::Local &Local, const ValueDecl *ExtendingDecl) { in addExtended() argument 437 if (P->ValDecl == ExtendingDecl) { in addExtended()
|
H A D | Compiler.cpp | 3487 Compiler<Emitter>::allocateLocal(DeclTy &&Src, const ValueDecl *ExtendingDecl) { in allocateLocal() argument 3520 if (ExtendingDecl) in allocateLocal() 3521 VarScope->addExtended(Local, ExtendingDecl); in allocateLocal()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | DeclCXX.cpp | 3079 const ValueDecl *ExtendingDecl = getExtendingDecl(); in getStorageDuration() local 3080 if (!ExtendingDecl) in getStorageDuration() 3084 if (isa<FieldDecl>(ExtendingDecl)) in getStorageDuration() 3088 if (isa<BindingDecl>(ExtendingDecl)) in getStorageDuration() 3089 return ExtendingDecl->getDeclContext()->isFunctionOrMethod() ? SD_Automatic in getStorageDuration() 3091 return cast<VarDecl>(ExtendingDecl)->getStorageDuration(); in getStorageDuration()
|
H A D | ExprCXX.cpp | 1838 ES->ExtendingDecl = ExtendedBy; in setExtendingDecl()
|
H A D | ASTImporter.cpp | 8177 auto ExtendingDecl = importChecked(Err, D->getExtendingDecl()); in VisitLifetimeExtendedTemporaryDecl() local 8183 if (GetImportedOrCreateDecl(To, D, Temporary, ExtendingDecl, in VisitLifetimeExtendedTemporaryDecl()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | DeclCXX.h | 3244 ValueDecl *ExtendingDecl = nullptr; variable 3254 ExprWithTemporary(Temp), ExtendingDecl(EDecl), in LifetimeExtendedTemporaryDecl() 3271 ValueDecl *getExtendingDecl() { return ExtendingDecl; } in getExtendingDecl() 3272 const ValueDecl *getExtendingDecl() const { return ExtendingDecl; } in getExtendingDecl()
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTReaderDecl.cpp | 2748 D->ExtendingDecl = readDeclAs<ValueDecl>(); in VisitLifetimeExtendedTemporaryDecl()
|