Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTWriter.h212 llvm::DenseMap<const Decl *, serialization::DeclID> DeclIDs; variable
226 LocDeclIDsTy DeclIDs; member
637 auto I = DeclIDs.find(D); in IsLocalDecl()
638 return (I == DeclIDs.end() || in IsLocalDecl()
H A DASTReader.h2044 const SmallVectorImpl<uint32_t> &DeclIDs,
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp3513 llvm::SmallVector<DeclID, 64> DeclIDs; member in __anon91274ea00b11::ASTDeclContextNameLookupTrait
3530 unsigned Start = DeclIDs.size(); in getData()
3532 DeclIDs.push_back( in getData()
3539 unsigned Start = DeclIDs.size(); in ImportData()
3541 DeclIDs.push_back(ID); in ImportData()
3629 LE.write<uint32_t>(DeclIDs[I]); in EmitData()
4347 DeclIDs[D] = ID; in WriteASTCore()
5226 DeclID &ID = DeclIDs[D]; in GetDeclRef()
5251 assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!"); in getDeclID()
5252 return DeclIDs[D]; in getDeclID()
[all …]
H A DASTReader.cpp1031 SmallVector<uint32_t, 4> DeclIDs; in ReadData() local
1033 DeclIDs.push_back(Reader.getGlobalDeclID( in ReadData()
1035 Reader.SetGloballyVisibleDecls(II, DeclIDs); in ReadData()
8494 const SmallVectorImpl<uint32_t> &DeclIDs, in SetGloballyVisibleDecls() argument
8497 PendingIdentifierInfos[II].append(DeclIDs.begin(), DeclIDs.end()); in SetGloballyVisibleDecls()
8501 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) { in SetGloballyVisibleDecls()
8506 PreloadedDeclIDs.push_back(DeclIDs[I]); in SetGloballyVisibleDecls()
8510 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I])); in SetGloballyVisibleDecls()
9200 SmallVector<uint32_t, 4> DeclIDs = in finishPendingActions() local
9204 SetGloballyVisibleDecls(II, DeclIDs, &TopLevelDecls[II]); in finishPendingActions()
H A DASTWriterDecl.cpp2416 serialization::DeclID &IDR = DeclIDs[D]; in WriteDecl()