Searched defs:DeclIDs (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Serialization/
H A DASTWriter.h169 llvm::DenseMap<const Decl *, serialization::DeclID> DeclIDs; member in class:clang::ASTWriter
179 LocDeclIDsTy DeclIDs; member in struct:clang::ASTWriter::DeclIDInFileInfo
180 /// \brief Set when the DeclIDs vectors from all files are joined, this
/external/clang/lib/Serialization/
H A DASTReader.cpp597 SmallVector<uint32_t, 4> DeclIDs; local
599 DeclIDs.push_back(Reader.getGlobalDeclID(F, ReadUnalignedLE32(d)));
600 Reader.SetGloballyVisibleDecls(II, DeclIDs);
6501 /// \param DeclIDs the set of declaration IDs with the name @p II that are
6509 const SmallVectorImpl<uint32_t> &DeclIDs,
6512 PendingIdentifierInfos[II].append(DeclIDs.begin(), DeclIDs.end());
6516 for (unsigned I = 0, N = DeclIDs.size(); I != N; ++I) {
6517 NamedDecl *D = cast<NamedDecl>(GetDecl(DeclIDs[I]));
7306 SmallVector<uint32_t, 4> DeclIDs local
6508 SetGloballyVisibleDecls(IdentifierInfo *II, const SmallVectorImpl<uint32_t> &DeclIDs, SmallVectorImpl<Decl *> *Decls) argument
[all...]

Completed in 121 milliseconds