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

  /external/clang/lib/StaticAnalyzer/Checkers/
VirtualCallChecker.cpp 39 DFSWorkList WList;
66 bool hasWork() const { return !WList.empty(); }
78 WList.push_back(WLUnit);
83 assert(!WList.empty());
84 return WList.back();
108 WList.pop_back();
182 for (SmallVectorImpl<const CallExpr *>::iterator I = WList.end(),
183 E = WList.begin(); I != E; --I) {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CoreEngine.h 65 /// WList - A set of queued nodes that need to be processed by the
66 /// worklist algorithm. It is up to the implementation of WList to decide
68 std::unique_ptr<WorkList> WList;
117 : SubEng(subengine), WList(WorkList::makeDFS()),
142 WList->hasWork() ||
151 WorkList *getWorkList() const { return WList.get(); }
195 return Eng.WList->getBlockCounter().getNumVisited(

Completed in 1791 milliseconds