Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Serialization/
H A DASTWriter.h213 llvm::DenseMap<const Decl *, serialization::DeclID> DeclIDs; variable
223 LocDeclIDsTy DeclIDs; member
621 auto I = DeclIDs.find(D); in IsLocalDecl()
622 return (I == DeclIDs.end() || in IsLocalDecl()
H A DASTReader.h2036 const SmallVectorImpl<uint32_t> &DeclIDs,
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTWriter.cpp3816 llvm::SmallVector<DeclID, 64> DeclIDs; member in __anona825c63b0c11::ASTDeclContextNameLookupTrait
3833 unsigned Start = DeclIDs.size(); in getData()
3835 DeclIDs.push_back( in getData()
3842 unsigned Start = DeclIDs.size(); in ImportData()
3844 DeclIDs.push_back(ID); in ImportData()
3939 LE.write<uint32_t>(DeclIDs[I]); in EmitData()
4658 DeclIDs[D] = ID; in WriteASTCore()
5528 DeclID &ID = DeclIDs[D]; in GetDeclRef()
5553 assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!"); in getDeclID()
5554 return DeclIDs[D]; in getDeclID()
[all …]
H A DASTReader.cpp1012 SmallVector<uint32_t, 4> DeclIDs; in ReadData() local
1014 DeclIDs.push_back(Reader.getGlobalDeclID( in ReadData()
1016 Reader.SetGloballyVisibleDecls(II, DeclIDs); in ReadData()
8321 const SmallVectorImpl<uint32_t> &DeclIDs, in SetGloballyVisibleDecls() argument
8324 PendingIdentifierInfos[II].append(DeclIDs.begin(), DeclIDs.end()); in SetGloballyVisibleDecls()
8328 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) { in SetGloballyVisibleDecls()
8333 PreloadedDeclIDs.push_back(DeclIDs[I]); in SetGloballyVisibleDecls()
8337 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I])); in SetGloballyVisibleDecls()
9256 SmallVector<uint32_t, 4> DeclIDs = in finishPendingActions() local
9260 SetGloballyVisibleDecls(II, DeclIDs, &TopLevelDecls[II]); in finishPendingActions()
H A DASTWriterDecl.cpp2278 serialization::DeclID &IDR = DeclIDs[D]; in WriteDecl()