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

References

tools/clang/include/clang/Analysis/CFG.h
  660     CFGElementPtr operator->() const { return &*(Parent->begin() + Index); }
  736       return E.Pos - E.Parent->begin();
  901   ref_iterator ref_begin() { return {this, begin()}; }
 1381       for (CFGBlock::const_iterator BI = (*I)->begin(), BE = (*I)->end();
tools/clang/lib/Analysis/CFG.cpp
 5079       for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
tools/clang/lib/Analysis/CFGStmtMap.cpp
   50   for (CFGBlock::iterator I = B->begin(), E = B->end(); I != E; ++I) {
tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
  188   for (const auto &B : Block) {
  326     for (CFGElement &E : *B) {
tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
  308     for (CFGBlock::iterator bi = block->begin(), be = block->end();