Home
last modified time | relevance | path

Searched refs:DeclsLoaded (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReader.cpp3202 DeclsLoaded.resize(DeclsLoaded.size() + F.LocalNumDecls); in ReadASTBlock()
7451 if (Index > DeclsLoaded.size()) { in getSourceLocationForDeclID()
7456 if (Decl *D = DeclsLoaded[Index]) in getSourceLocationForDeclID()
7539 if (Index >= DeclsLoaded.size()) { in GetExistingDecl()
7545 return DeclsLoaded[Index]; in GetExistingDecl()
7554 if (Index >= DeclsLoaded.size()) { in GetDecl()
7560 if (!DeclsLoaded[Index]) { in GetDecl()
7563 DeserializationListener->DeclRead(ID, DeclsLoaded[Index]); in GetDecl()
7566 return DeclsLoaded[Index]; in GetDecl()
7829 DeclsLoaded.size() - llvm::count(DeclsLoaded, (Decl *)nullptr); in PrintStats()
[all …]
H A DASTReaderDecl.cpp3038 assert(!DeclsLoaded[Index] && "Decl loaded twice?"); in LoadedDecl()
3039 DeclsLoaded[Index] = D; in LoadedDecl()
/openbsd-src/gnu/llvm/clang/include/clang/Serialization/
H A DASTReader.h502 std::vector<Decl *> DeclsLoaded; variable
1825 return static_cast<unsigned>(DeclsLoaded.size()); in getTotalNumDecls()