Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DAnalysisBasedWarnings.cpp922 std::deque<const CFGBlock *> BlockQueue; in fillReachableBlocks() local
925 BlockQueue.push_back(&Cfg->getEntry()); in fillReachableBlocks()
933 BlockQueue.push_back(B); in fillReachableBlocks()
936 while (!BlockQueue.empty()) { in fillReachableBlocks()
937 const CFGBlock *P = BlockQueue.front(); in fillReachableBlocks()
938 BlockQueue.pop_front(); in fillReachableBlocks()
943 BlockQueue.push_back(*I); in fillReachableBlocks()
954 std::deque<const CFGBlock*> BlockQueue(B.pred_begin(), B.pred_end()); in checkFallThroughIntoBlock() local
955 while (!BlockQueue.empty()) { in checkFallThroughIntoBlock()
956 const CFGBlock *P = BlockQueue.front(); in checkFallThroughIntoBlock()
[all …]