Home
last modified time | relevance | path

Searched refs:PotentiallyInterestingDecls (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp4195 PotentiallyInterestingDecls.push_back(D); in ReadDeclRecord()
4217 while (!PotentiallyInterestingDecls.empty()) { in PassInterestingDeclsToConsumer()
4218 Decl *D = PotentiallyInterestingDecls.front(); in PassInterestingDeclsToConsumer()
4219 PotentiallyInterestingDecls.pop_front(); in PassInterestingDeclsToConsumer()
4225 std::move(PotentiallyInterestingDecls); in PassInterestingDeclsToConsumer()
4226 PotentiallyInterestingDecls.clear(); in PassInterestingDeclsToConsumer()
4227 assert(PotentiallyInterestingDecls.empty()); in PassInterestingDeclsToConsumer()
4307 PotentiallyInterestingDecls.push_back(D); in loadDeclUpdateRecords()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h1109 std::deque<Decl *> PotentiallyInterestingDecls; variable