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.cpp4294 PotentiallyInterestingDecls.push_back(D); in ReadDeclRecord()
4317 while (!PotentiallyInterestingDecls.empty()) { in PassInterestingDeclsToConsumer()
4318 Decl *D = PotentiallyInterestingDecls.front(); in PassInterestingDeclsToConsumer()
4319 PotentiallyInterestingDecls.pop_front(); in PassInterestingDeclsToConsumer()
4325 std::move(PotentiallyInterestingDecls); in PassInterestingDeclsToConsumer()
4326 PotentiallyInterestingDecls.clear(); in PassInterestingDeclsToConsumer()
4327 assert(PotentiallyInterestingDecls.empty()); in PassInterestingDeclsToConsumer()
4405 PotentiallyInterestingDecls.push_back(D); in loadDeclUpdateRecords()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h1231 std::deque<Decl *> PotentiallyInterestingDecls; variable