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

References

tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
 1354   switch (S->getStmtClass()) {
 1356       const auto *BO = cast<BinaryOperator>(S);
 1362       return cast<IfStmt>(S)->getCond() == Cond;
 1364       return cast<ForStmt>(S)->getCond() == Cond;
 1366       return cast<WhileStmt>(S)->getCond() == Cond;
 1368       return cast<DoStmt>(S)->getCond() == Cond;
 1370       return cast<ChooseExpr>(S)->getCond() == Cond;
 1372       return cast<IndirectGotoStmt>(S)->getTarget() == Cond;
 1374       return cast<SwitchStmt>(S)->getCond() == Cond;
 1376       return cast<BinaryConditionalOperator>(S)->getCond() == Cond;
 1378       const auto *CO = cast<ConditionalOperator>(S);
 1384       return cast<ObjCForCollectionStmt>(S)->getElement() == Cond;
 1386       const auto *FRS = cast<CXXForRangeStmt>(S);