OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:isPrunable
(Results
1 - 2
of
2
) sorted by relevancy
/src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugReporter.h
736
const bool
IsPrunable
;
738
NoteTag(Callback &&Cb, bool
IsPrunable
)
739
: ProgramPointTag(&Kind), Cb(std::move(Cb)),
IsPrunable
(
IsPrunable
) {}
762
bool
isPrunable
() const { return
IsPrunable
; }
769
const NoteTag *makeNoteTag(Callback &&Cb, bool
IsPrunable
= false) {
772
std::unique_ptr<NoteTag> T(new NoteTag(std::move(Cb),
IsPrunable
));
/src/external/apache2/llvm/dist/clang/include/clang/Analysis/
PathDiagnostic.h
536
Optional<bool>
IsPrunable
;
547
void setPrunable(bool
isPrunable
, bool override = false) {
548
if (
IsPrunable
.hasValue() && !override)
550
IsPrunable
=
isPrunable
;
554
bool
isPrunable
() const {
555
return
IsPrunable
.hasValue() ?
IsPrunable
.getValue() : false;
Completed in 16 milliseconds
Indexes created Sun Jun 14 00:25:39 UTC 2026