Searched defs:WList (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp39 DFSWorkList WList; member in class:__anon18252::WalkAST
66 bool hasWork() const { return !WList.empty(); }
78 WList.push_back(WLUnit);
83 assert(!WList.empty());
84 return WList.back();
108 WList.pop_back();
175 for (SmallVectorImpl<const CallExpr *>::iterator I = WList.end(),
176 E = WList.begin(); I != E; --I) {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCoreEngine.h65 /// 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; member in class:clang::ento::CoreEngine
114 WList(WorkList::makeDFS()),
144 WList->hasWork() ||
153 WorkList *getWorkList() const { return WList.get(); }
197 return Eng.WList->getBlockCounter().getNumVisited(

Completed in 171 milliseconds