Home
last modified time | relevance | path

Searched refs:DeclIDs (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h212 llvm::DenseMap<const Decl *, serialization::DeclID> DeclIDs; variable
226 LocDeclIDsTy DeclIDs; member
686 auto I = DeclIDs.find(D); in IsLocalDecl()
687 return (I == DeclIDs.end() || in IsLocalDecl()
H A DASTReader.h2119 const SmallVectorImpl<uint32_t> &DeclIDs,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp3235 llvm::stable_sort(Info.DeclIDs); in WriteFileDeclIDsMap()
3236 for (auto &LocDeclEntry : Info.DeclIDs) in WriteFileDeclIDsMap()
3810 llvm::SmallVector<DeclID, 64> DeclIDs; member in __anon367831a21011::ASTDeclContextNameLookupTrait
3827 unsigned Start = DeclIDs.size(); in getData()
3829 DeclIDs.push_back( in getData()
3836 unsigned Start = DeclIDs.size(); in ImportData()
3926 LE.write<uint32_t>(DeclIDs[I]); in EmitData()
4755 DeclIDs[D] = ID; in WriteASTCore()
5706 DeclID &ID = DeclIDs[D]; in GetDeclRef()
5732 return DeclIDs[D]; in getDeclID()
[all …]
H A DASTReader.cpp1092 SmallVector<uint32_t, 4> DeclIDs; in ReadData() local
1094 DeclIDs.push_back(Reader.getGlobalDeclID( in ReadData()
1097 Reader.SetGloballyVisibleDecls(II, DeclIDs); in ReadData()
8815 const SmallVectorImpl<uint32_t> &DeclIDs, in SetGloballyVisibleDecls() argument
8818 PendingIdentifierInfos[II].append(DeclIDs.begin(), DeclIDs.end()); in SetGloballyVisibleDecls()
8822 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) { in SetGloballyVisibleDecls()
8827 PreloadedDeclIDs.push_back(DeclIDs[I]); in SetGloballyVisibleDecls()
8831 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I])); in SetGloballyVisibleDecls()
9524 SmallVector<uint32_t, 4> DeclIDs = in finishPendingActions() local
9528 SetGloballyVisibleDecls(II, DeclIDs, &TopLevelDecls[II]); in finishPendingActions()
H A DASTWriterDecl.cpp2723 serialization::DeclID &IDR = DeclIDs[D]; in WriteDecl()