OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isprunable
(Results
1 - 2
of
2
) sorted by null
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h
502
Optional<bool>
IsPrunable
;
522
void setPrunable(bool
isPrunable
, bool override = false) {
523
if (
IsPrunable
.hasValue() && !override)
525
IsPrunable
=
isPrunable
;
529
bool
isPrunable
() const {
530
return
IsPrunable
.hasValue() ?
IsPrunable
.getValue() : false;
/external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp
195
containsSomethingInteresting |= !event->
isPrunable
();
[
all
...]
Completed in 78 milliseconds