OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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();
175
for (SmallVectorImpl<const CallExpr *>::iterator I =
WList
.end(),
176
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
;
114
WList
(WorkList::makeDFS()),
144
WList
->hasWork() ||
153
WorkList *getWorkList() const { return
WList
.get(); }
197
return Eng.
WList
->getBlockCounter().getNumVisited(
Completed in 105 milliseconds