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

  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
WorkList.h 28 class WorkListUnit {
35 WorkListUnit(ExplodedNode *N, BlockCounter C,
42 explicit WorkListUnit(ExplodedNode *N, BlockCounter C)
67 virtual void enqueue(const WorkListUnit& U) = 0;
70 enqueue(WorkListUnit(N, CurrentCounter, B, idx));
75 enqueue(WorkListUnit(N, CurrentCounter));
78 virtual WorkListUnit dequeue() = 0;
87 virtual bool visit(const WorkListUnit &U) = 0;
CoreEngine.h 133 const WorkListUnit& WU);
  /external/clang/lib/StaticAnalyzer/Checkers/
VirtualCallChecker.cpp 35 typedef const CallExpr * WorkListUnit;
36 typedef SmallVector<WorkListUnit, 20> DFSWorkList;
70 void Enqueue(WorkListUnit WLUnit) {
82 WorkListUnit Dequeue() {
89 WorkListUnit WLUnit = Dequeue();
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 45 SmallVector<WorkListUnit,20> Stack;
51 void enqueue(const WorkListUnit& U) override {
55 WorkListUnit dequeue() override {
57 const WorkListUnit& U = Stack.back();
63 for (SmallVectorImpl<WorkListUnit>::iterator
73 std::deque<WorkListUnit> Queue;
79 void enqueue(const WorkListUnit& U) override {
83 WorkListUnit dequeue() override {
84 WorkListUnit U = Queue.front();
90 for (std::deque<WorkListUnit>::iterato
    [all...]

Completed in 203 milliseconds