Searched refs:WorkListUnit (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DWorkList.cpp37 SmallVector<WorkListUnit, 20> Stack;
44 void enqueue(const WorkListUnit& U) override {
48 WorkListUnit dequeue() override {
50 const WorkListUnit& U = Stack.back();
57 std::deque<WorkListUnit> Queue;
64 void enqueue(const WorkListUnit& U) override {
68 WorkListUnit dequeue() override {
69 WorkListUnit U = Queue.front();
92 std::deque<WorkListUnit> Queue;
93 SmallVector<WorkListUnit, 2
[all...]
H A DCoreEngine.cpp140 const WorkListUnit& WU = WList->dequeue();
155 const WorkListUnit& WU) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DWorkList.h27 class WorkListUnit { class in namespace:clang::ento
34 WorkListUnit(ExplodedNode *N, BlockCounter C, function in class:clang::ento::WorkListUnit
41 explicit WorkListUnit(ExplodedNode *N, BlockCounter C) function in class:clang::ento::WorkListUnit
66 virtual void enqueue(const WorkListUnit& U) = 0;
69 enqueue(WorkListUnit(N, CurrentCounter, B, idx));
74 enqueue(WorkListUnit(N, CurrentCounter));
77 virtual WorkListUnit dequeue() = 0;
H A DCoreEngine.h156 const WorkListUnit& WU);

Completed in 61 milliseconds