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

References

tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
 3060     Out << "{ \"state_id\": " << State->getID()
 3063     Indent(Out, Space, IsDot) << "\"program_points\": [\\l";
 3069           Indent(Out, Space + 1, IsDot) << "{ ";
 3070           OtherNode->getLocation().printJson(Out, /*NL=*/"\\l");
 3071           Out << ", \"tag\": ";
 3073             Out << '\"' << Tag->getTagDescription() << "\"";
 3075             Out << "null";
 3076           Out << ", \"node_id\": " << OtherNode->getID() <<
 3081         [&](const ExplodedNode *) { Out << ",\\l"; },
 3084     Out << "\\l"; // Adds a new-line to the last program point.
 3085     Indent(Out, Space, IsDot) << "],\\l";
 3087     State->printDOT(Out, N->getLocationContext(), Space);
 3089     Out << "\\l}\\l";
 3090     return Out.str();