Home
last modified time | relevance | path

Searched refs:ExtendingDecl (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCheckExprLifetime.cpp1109 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 DCompiler.h294 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 DCompiler.cpp3487 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 DDeclCXX.cpp3079 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 DExprCXX.cpp1838 ES->ExtendingDecl = ExtendedBy; in setExtendingDecl()
H A DASTImporter.cpp8177 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 DDeclCXX.h3244 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 DASTReaderDecl.cpp2748 D->ExtendingDecl = readDeclAs<ValueDecl>(); in VisitLifetimeExtendedTemporaryDecl()