Searched refs:DeclUpdate (Results 1 – 3 of 3) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | ASTWriter.h | 344 class DeclUpdate { 357 DeclUpdate(unsigned Kind) : Kind(Kind), Dcl(nullptr) {} in DeclUpdate() function 358 DeclUpdate(unsigned Kind, const Decl *Dcl) : Kind(Kind), Dcl(Dcl) {} in DeclUpdate() function 359 DeclUpdate(unsigned Kind, QualType Type) in DeclUpdate() function 361 DeclUpdate(unsigned Kind, SourceLocation Loc) in DeclUpdate() function 363 DeclUpdate(unsigned Kind, unsigned Val) : Kind(Kind), Val(Val) {} in DeclUpdate() function 364 DeclUpdate(unsigned Kind, Module *M) : Kind(Kind), Mod(M) {} in DeclUpdate() function 365 DeclUpdate(unsigned Kind, const Attr *Attribute) in DeclUpdate() function 381 using UpdateRecord = SmallVector<DeclUpdate, 1>;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 5265 for (auto &DeclUpdate : LocalUpdates) { in WriteDeclUpdatesBlocks() local 5266 const Decl *D = DeclUpdate.first; in WriteDeclUpdatesBlocks() 5272 for (auto &Update : DeclUpdate.second) { in WriteDeclUpdatesBlocks() 6212 DeclUpdate(UPD_CXX_INSTANTIATED_CLASS_DEFINITION)); in CompletedTagDefinition() 6299 DeclUpdate(UPD_CXX_DEDUCED_RETURN_TYPE, ReturnType)); in DeducedReturnType() 6331 DeclUpdates[D].push_back(DeclUpdate(UPD_CXX_ADDED_VAR_DEFINITION)); in VariableDefinitionInstantiated() 6366 DeclUpdate(UPD_CXX_INSTANTIATED_DEFAULT_ARGUMENT, D)); in DefaultArgumentInstantiated() 6375 DeclUpdate(UPD_CXX_INSTANTIATED_DEFAULT_MEMBER_INITIALIZER, D)); in DefaultMemberInitializerInstantiated() 6401 DeclUpdates[D].push_back(DeclUpdate(UPD_DECL_MARKED_USED)); in DeclarationMarkedUsed() 6430 DeclUpdate(UPD_DECL_MARKED_OPENMP_DECLARETARGET, Attr)); in DeclarationMarkedOpenMPDeclareTarget() [all …]
|
| H A D | ASTWriterDecl.cpp | 267 Writer.DeclUpdates[Template].push_back(ASTWriter::DeclUpdate( in RegisterTemplateSpecialization() 1354 ASTWriter::DeclUpdate(UPD_CXX_ADDED_ANONYMOUS_NAMESPACE, D)); in VisitNamespaceDecl()
|