Searched refs:DeclIDs (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/ |
H A D | ASTWriter.h | 229 llvm::DenseMap<const Decl *, LocalDeclID> DeclIDs; variable 247 LocDeclIDsTy DeclIDs; member 734 auto I = DeclIDs.find(D); in IsLocalDecl() 735 return (I == DeclIDs.end() || I->second >= clang::NUM_PREDEF_DECL_IDS); in IsLocalDecl()
|
H A D | ASTReader.h | 2131 const SmallVectorImpl<GlobalDeclID> &DeclIDs,
|
/freebsd/contrib/llvm-project/clang/lib/Serialization/ |
H A D | ASTWriter.cpp | 2327 Record.push_back(FDI->second->DeclIDs.size()); in WriteSourceManagerBlock() 3395 llvm::stable_sort(Info.DeclIDs); in WriteFileDeclIDsMap() 3396 for (auto &LocDeclEntry : Info.DeclIDs) in WriteFileDeclIDsMap() 3981 llvm::SmallVector<LocalDeclID, 64> DeclIDs; member in __anon397e50ec0d11::ASTDeclContextNameLookupTrait 3998 unsigned Start = DeclIDs.size(); in getData() 4014 DeclIDs.push_back(Writer.GetDeclRef(DeclForLocalLookup)); in getData() 4016 return std::make_pair(Start, DeclIDs.size()); in getData() 4020 unsigned Start = DeclIDs.size(); in ImportData() 4021 DeclIDs.insert( in ImportData() 4022 DeclIDs.end(), in ImportData() [all …]
|
H A D | ASTReader.cpp | 1136 SmallVector<GlobalDeclID, 4> DeclIDs; in ReadData() local 1138 DeclIDs.push_back(Reader.getGlobalDeclID( in ReadData() 1142 Reader.SetGloballyVisibleDecls(II, DeclIDs); in ReadData() 8906 IdentifierInfo *II, const SmallVectorImpl<GlobalDeclID> &DeclIDs, in SetGloballyVisibleDecls() argument 8909 PendingIdentifierInfos[II].append(DeclIDs.begin(), DeclIDs.end()); in SetGloballyVisibleDecls() 8913 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) { in SetGloballyVisibleDecls() 8918 PreloadedDeclIDs.push_back(DeclIDs[I]); in SetGloballyVisibleDecls() 8922 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I])); in SetGloballyVisibleDecls() 9664 SmallVector<GlobalDeclID, 4> DeclIDs = in finishPendingActions() local 9668 SetGloballyVisibleDecls(II, DeclIDs, &TopLevelDecls[II]); in finishPendingActions()
|
H A D | ASTWriterDecl.cpp | 2807 LocalDeclID &IDR = DeclIDs[D]; in WriteDecl()
|