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

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h203 llvm::DenseMap<const Decl *, serialization::DeclID> DeclIDs; member in class:clang::ASTWriter
213 LocDeclIDsTy DeclIDs; member in struct:clang::ASTWriter::DeclIDInFileInfo
215 /// Set when the DeclIDs vectors from all files are joined, this
612 auto I = DeclIDs.find(D);
613 return (I == DeclIDs.end() ||
H A DASTReader.h2007 const SmallVectorImpl<uint32_t> &DeclIDs,
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1941 Record.push_back(FDI->second->DeclIDs.size());
2882 // Join the vectors of DeclIDs from all files.
2887 for (auto &LocDeclEntry : Info.DeclIDs)
3467 llvm::SmallVector<DeclID, 64> DeclIDs;
3473 /// A start and end index into DeclIDs, representing a sequence of decls.
3484 unsigned Start = DeclIDs.size();
3486 DeclIDs.push_back(
3489 return std::make_pair(Start, DeclIDs.size());
3493 unsigned Start = DeclIDs.size();
3495 DeclIDs
[all...]
H A DASTReader.cpp1015 SmallVector<uint32_t, 4> DeclIDs; local
1017 DeclIDs.push_back(Reader.getGlobalDeclID(
1019 Reader.SetGloballyVisibleDecls(II, DeclIDs);
8294 /// \param DeclIDs the set of declaration IDs with the name @p II that are
8302 const SmallVectorImpl<uint32_t> &DeclIDs,
8305 PendingIdentifierInfos[II].append(DeclIDs.begin(), DeclIDs.end());
8309 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
8314 PreloadedDeclIDs.push_back(DeclIDs[I]);
8318 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[
[all...]
H A DASTWriterDecl.cpp210 // our chained AST reader, we can just write out the DeclIDs. Otherwise,
2404 serialization::DeclID &IDR = DeclIDs[D];

Completed in 87 milliseconds