Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp916 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
919 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
927 BlockQueue.push_back(B); in fillReachableBlocks()
930 while (!BlockQueue.empty()) { in fillReachableBlocks()
931 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
932 BlockQueue.pop_front(); in fillReachableBlocks()
937 BlockQueue.push_back(*I); in fillReachableBlocks()
948 std::deque<const CFGBlock*> BlockQueue(B.pred_begin(), B.pred_end()); in checkFallThroughIntoBlock() local
949 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
950 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
[all …]