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

References

tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
   37   const Stmt *S = N->getLocationAs<PreStmt>()->getStmt();
tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
  424   auto PP = N->getLocationAs<BlockEdge>();
  464   if (auto CE = N->getLocationAs<CallExitBegin>())
tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
  103   if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>())
tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
 3091     } else if (auto CE = N->getLocationAs<CallEnter>()) {
tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
  271   if (!N->getLocationAs<PostStore>() && !N->getLocationAs<PostInitializer>() &&
  271   if (!N->getLocationAs<PostStore>() && !N->getLocationAs<PostInitializer>() &&
  272       !N->getLocationAs<PostStmt>())
  276   if (auto PS = N->getLocationAs<PostStmt>())
  551   auto CallExitLoc = N->getLocationAs<CallExitBegin>();
  619   assert(N->getLocationAs<CallExitBegin>());
  627     auto CallExitLoc = N->getLocationAs<CallExitBegin>();
  646     if (auto CE = N->getLocationAs<CallEnter>())
  942       if (Optional<CallExitEnd> CEE = Node->getLocationAs<CallExitEnd>())
  957         if (Optional<StmtPoint> SP = Node->getLocationAs<StmtPoint>())
  972     Optional<CallExitEnd> CEE = Node->getLocationAs<CallExitEnd>();
 1010     Optional<StmtPoint> SP = N->getLocationAs<StmtPoint>();
 1136     Optional<CallEnter> CE = N->getLocationAs<CallEnter>();
 1217   Optional<PostStmt> P = N->getLocationAs<PostStmt>();
 1382   if (Optional<PostInitializer> PIP = Pred->getLocationAs<PostInitializer>()) {
 1400       Optional<PostStore> PS = Succ->getLocationAs<PostStore>();
 1409     if (Optional<PostStmt> P = Succ->getLocationAs<PostStmt>())
 1418     if (Optional<CallEnter> CE = Succ->getLocationAs<CallEnter>()) {
 1467   if (Optional<PostStmt> PS = StoreSite->getLocationAs<PostStmt>()) {
 2097   Optional<PreStmt> P = N->getLocationAs<PreStmt>();
tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
   98           CE = Node->getLocationAs<CallEnter>();