Home
last modified time | relevance | path

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

/external/clang/lib/Serialization/
DASTReader.cpp5565 PendingIdentifierInfos.push_back(PendingIdentifierInfo()); in SetGloballyVisibleDecls()
5566 PendingIdentifierInfo &PII = PendingIdentifierInfos.back(); in SetGloballyVisibleDecls()
6242 while (!PendingIdentifierInfos.empty() || !PendingDeclChains.empty()) { in finishPendingActions()
6245 while (!PendingIdentifierInfos.empty()) { in finishPendingActions()
6246 SetGloballyVisibleDecls(PendingIdentifierInfos.front().II, in finishPendingActions()
6247 PendingIdentifierInfos.front().DeclIDs, true); in finishPendingActions()
6248 PendingIdentifierInfos.pop_front(); in finishPendingActions()
/external/clang/include/clang/Serialization/
DASTReader.h671 std::deque<PendingIdentifierInfo> PendingIdentifierInfos; variable