reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
 2215     Cond = cast<IfStmt>(Term)->getCond();
 2218     Cond = cast<ConditionalOperator>(Term)->getCond();
 2227     Cond = BO->getLHS();
 2231   Cond = Cond->IgnoreParens();
 2231   Cond = Cond->IgnoreParens();
 2236   while (const auto *InnerBO = dyn_cast<BinaryOperator>(Cond)) {
 2239     Cond = InnerBO->getRHS()->IgnoreParens();
 2242   assert(Cond);
 2245   return VisitTrueTest(Cond, BRC, R, N, TookTrue);