HomeSort by relevance Sort by last modified time
    Searched refs:WorkListUnit (Results 1 - 5 of 5) 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 134 const WorkListUnit& WU);
  /external/clang/lib/StaticAnalyzer/Checkers/
VirtualCallChecker.cpp 34 typedef const CallExpr * WorkListUnit;
35 typedef SmallVector<WorkListUnit, 20> DFSWorkList;
70 void Enqueue(WorkListUnit WLUnit) {
82 WorkListUnit Dequeue() {
89 WorkListUnit WLUnit = Dequeue();
IdempotentOperationChecker.cpp 582 virtual bool visit(const WorkListUnit &U) {
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 44 SmallVector<WorkListUnit,20> Stack;
50 virtual void enqueue(const WorkListUnit& U) {
54 virtual WorkListUnit dequeue() {
56 const WorkListUnit& U = Stack.back();
62 for (SmallVectorImpl<WorkListUnit>::iterator
72 std::deque<WorkListUnit> Queue;
78 virtual void enqueue(const WorkListUnit& U) {
82 virtual WorkListUnit dequeue() {
83 WorkListUnit U = Queue.front();
89 for (std::deque<WorkListUnit>::iterato
    [all...]

Completed in 1008 milliseconds