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

References

tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
  524   for (PathPieces::iterator I = Pieces.begin(), E = Pieces.end(); I != E;) {
  525     if (auto *C = dyn_cast<PathDiagnosticCallPiece>(I->get()))
  528     if (auto *M = dyn_cast<PathDiagnosticMacroPiece>(I->get()))
  531     if (auto *CF = dyn_cast<PathDiagnosticControlFlowPiece>(I->get())) {
  535         I = Pieces.erase(I);
  535         I = Pieces.erase(I);
  538         PathPieces::iterator Next = std::next(I);
  545         I = Pieces.erase(I);
  545         I = Pieces.erase(I);
  550     I++;