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.cpp707 std::deque<const CFGBlock*> BlockQueue; local
709 std::copy(B.pred_begin(), B.pred_end(), std::back_inserter(BlockQueue));
711 while (!BlockQueue.empty()) {
712 const CFGBlock *P = BlockQueue.front();
713 BlockQueue.pop_front();
758 std::back_inserter(BlockQueue));

Completed in 77 milliseconds