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

References

tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
   60         return Visit(SR->getSymbol());
   74     return Visit(V.getSymbol());
  105     return "value derived from (" + Visit(S->getParentSymbol()) +
  121     OS << "(" << Visit(S->getLHS()) << ") "
  131     return "(" + Visit(S->getLHS()) + ") " +
  133            " (" + Visit(S->getRHS()) + ")";
  148       return "object at " + Visit(R->getSymbol());
  151       return "heap segment that starts at " + Visit(R->getSymbol());
  152     return "pointee of " + Visit(R->getSymbol());
tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
  362     if (Optional<std::string> Str = Visit(S->getLHS()))
  373     if (Optional<std::string> Str1 = Visit(S->getLHS()))
  374       if (Optional<std::string> Str2 = Visit(S->getRHS()))
  383     if (Optional<std::string> Str = Visit(S->getOperand()))
  404   auto Str = V.Visit(Sym);
tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
 1278       SVal LHS = Visit(S->getLHS());
 1318       SVal LHS = Visit(S->getLHS());
 1319       SVal RHS = Visit(S->getRHS());
 1334       return Visit(V.getSymbol());