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 30 class WorkListUnit {
37 WorkListUnit(ExplodedNode *N, BlockCounter C,
44 explicit WorkListUnit(ExplodedNode *N, BlockCounter C)
69 virtual void enqueue(const WorkListUnit& U) = 0;
72 enqueue(WorkListUnit(N, CurrentCounter, B, idx));
77 enqueue(WorkListUnit(N, CurrentCounter));
80 virtual WorkListUnit dequeue() = 0;
89 virtual bool visit(const WorkListUnit &U) = 0;
CoreEngine.h 144 const WorkListUnit& WU);
  /external/clang/lib/StaticAnalyzer/Checkers/
VirtualCallChecker.cpp 33 typedef const CallExpr * WorkListUnit;
34 typedef SmallVector<WorkListUnit, 20> DFSWorkList;
69 void Enqueue(WorkListUnit WLUnit) {
81 WorkListUnit Dequeue() {
88 WorkListUnit WLUnit = Dequeue();
IdempotentOperationChecker.cpp 578 virtual bool visit(const WorkListUnit &U) {
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 42 SmallVector<WorkListUnit,20> Stack;
48 virtual void enqueue(const WorkListUnit& U) {
52 virtual WorkListUnit dequeue() {
54 const WorkListUnit& U = Stack.back();
60 for (SmallVectorImpl<WorkListUnit>::iterator
70 std::deque<WorkListUnit> Queue;
76 virtual void enqueue(const WorkListUnit& U) {
80 virtual WorkListUnit dequeue() {
81 WorkListUnit U = Queue.front();
87 for (std::deque<WorkListUnit>::iterato
    [all...]

Completed in 458 milliseconds