Home
last modified time | relevance | path

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

/external/clang/lib/Serialization/
DASTReader.cpp5615 PendingIdentifierInfos.push_back(PendingIdentifierInfo()); in SetGloballyVisibleDecls()
5616 PendingIdentifierInfo &PII = PendingIdentifierInfos.back(); in SetGloballyVisibleDecls()
6346 while (!PendingIdentifierInfos.empty() || !PendingDeclChains.empty()) { in finishPendingActions()
6349 while (!PendingIdentifierInfos.empty()) { in finishPendingActions()
6350 SetGloballyVisibleDecls(PendingIdentifierInfos.front().II, in finishPendingActions()
6351 PendingIdentifierInfos.front().DeclIDs, true); in finishPendingActions()
6352 PendingIdentifierInfos.pop_front(); in finishPendingActions()
/external/clang/include/clang/Serialization/
DASTReader.h676 std::deque<PendingIdentifierInfo> PendingIdentifierInfos; variable