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

Declarations

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
  583   bool isLive(SymbolRef sym);

References

tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
  614     return !isLive(sym);
tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
  279     if (!SymReaper.isLive(Sym))
tools/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
  248         if (!SymReaper.isLive(Symbol))
tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
  832     if (!SR.isLive(Sym.first)) {
tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
  150       if (!SymReaper.isLive(P.first) || !SymReaper.isLive(P.second))
  150       if (!SymReaper.isLive(P.first) || !SymReaper.isLive(P.second))
tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
 2547     if (SymReaper.isLive(SR->getSymbol()))
 2631       if (SymReaper.isLive(SR->getSymbol())) {
tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
  438     return isLive(SR->getSymbol());
  478     KnownLive = isLive(cast<SymbolDerived>(sym)->getParentSymbol());
  490     KnownLive = isLive(cast<SymIntExpr>(sym)->getLHS());
  493     KnownLive = isLive(cast<IntSymExpr>(sym)->getRHS());
  496     KnownLive = isLive(cast<SymSymExpr>(sym)->getLHS()) &&
  497                 isLive(cast<SymSymExpr>(sym)->getRHS());
  500     KnownLive = isLive(cast<SymbolCast>(sym)->getOperand());