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

/external/clang/include/clang/Analysis/FlowSensitive/
H A DDataflowSolver.h33 SmallVector<const CFGBlock *, 10> BlockQueue; member in class:clang::DataflowWorkListTy
42 BlockQueue.push_back(B);
47 assert(!BlockQueue.empty());
48 const CFGBlock *B = BlockQueue.back();
49 BlockQueue.pop_back();
55 bool isEmpty() const { return BlockQueue.empty(); }
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp708 std::deque<const CFGBlock *> BlockQueue; local
711 BlockQueue.push_back(&Cfg->getEntry());
720 BlockQueue.push_back(B);
723 while (!BlockQueue.empty()) {
724 const CFGBlock *P = BlockQueue.front();
725 BlockQueue.pop_front();
730 BlockQueue.push_back(*I);
741 std::deque<const CFGBlock*> BlockQueue; local
743 std::copy(B.pred_begin(), B.pred_end(), std::back_inserter(BlockQueue));
745 while (!BlockQueue
[all...]

Completed in 102 milliseconds