HomeSort by relevance Sort by last modified time
    Searched refs:BlockQueue (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/Analysis/FlowSensitive/
DataflowSolver.h 33 SmallVector<const CFGBlock *, 10> BlockQueue;
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/
AnalysisBasedWarnings.cpp 708 std::deque<const CFGBlock *> BlockQueue;
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;
743 std::copy(B.pred_begin(), B.pred_end(), std::back_inserter(BlockQueue));
745 while (!BlockQueue.empty())
    [all...]

Completed in 176 milliseconds