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

References

tools/clang/include/clang/Analysis/Analyses/Dominators.h
  112         bool IsExitBlock = *I == &(*I)->getParent()->getExit();
tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
  249     V.exitCFG(&CFGraph->getExit());
tools/clang/include/clang/Analysis/CFG.h
 1559   static NodeRef getEntryNode(::clang::CFG *F) { return &F->getExit(); }
tools/clang/include/clang/Analysis/ProgramPoint.h
  343     return &getLocationContext()->getCFG()->getExit();
tools/clang/lib/Analysis/CFG.cpp
 1488   assert(Succ == &cfg->getExit());
 1524         VBaseSucc = Succ = B ? B : &cfg->getExit();
 1623   addSuccessor(B, &cfg->getExit(), Succ);
 2643       addSuccessor(Block, &cfg->getExit());
 3058     addSuccessor(Block, &cfg->getExit());
 3163     addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
 3799   addSuccessor(Block, &cfg->getExit());
 3829     addSuccessor(Block, &cfg->getExit());
 4268       addSuccessor(NewTryTerminatedBlock, &cfg->getExit());
tools/clang/lib/Analysis/Consumed.cpp
 1405     if (CurrBlock == &AC.getCFG()->getExit() &&
tools/clang/lib/Analysis/ThreadSafety.cpp
  804   unsigned exitID = CFGraph->getExit().getBlockID();
  842                CurrBlock != &CFGraph->getExit()) {
 2512   CFGBlockInfo *Final   = &BlockInfo[CFGraph->getExit().getBlockID()];
tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  223   const unsigned ExitID = cfg->getExit().getBlockID();
  267   if (cfg->getExit().pred_empty())
  297       if (Succ->getBlockID() == Body->getExit().getBlockID())
  361   if (BodyCFG->getExit().pred_empty())
  439            cfg->getExit().filtered_pred_start_end(FO);
  498     if (std::find(B.succ_begin(), B.succ_end(), &cfg->getExit())
tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
 2317     CFGBlock &Exit = ProgP.getLocationContext()->getCFG()->getExit();
tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
  239   if (Blk == &(L.getLocationContext()->getCFG()->getExit())) {
  240     assert(L.getLocationContext()->getCFG()->getExit().empty() &&
tools/clang/unittests/Analysis/CFGDominatorTree.cpp
   40   EXPECT_EQ(ExitBlock, &cfg->getExit());
  129   EXPECT_EQ(ExitBlock, &cfg->getExit());