| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | DynamicType.cpp | 192 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument 197 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument 202 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument 218 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument 226 const char *NL, unsigned int Space, bool IsDot) { in printJson() argument 227 printJson(Pair.first, Out, NL, Space, IsDot) << ", "; in printJson() 228 return printJson(Pair.second, Out, NL, Space, IsDot); in printJson() 234 unsigned int Space, bool IsDot) { in printJsonContainer() argument 244 Indent(Out, Space, IsDot) << "{ "; in printJsonContainer() 245 printJson(Element, Out, NL, Space, IsDot) << " }"; in printJsonContainer() [all …]
|
| H A D | Environment.cpp | 217 unsigned int Space, bool IsDot) const { in printJson() 218 Indent(Out, Space, IsDot) << "\"environment\": "; in printJson() 246 LCtx->printJson(Out, NL, Space, IsDot, [&](const LocationContext *LC) { in printJson() 276 Indent(Out, InnerSpace, IsDot) in printJson() 292 Indent(Out, --InnerSpace, IsDot) << ']'; in printJson() 297 Indent(Out, --Space, IsDot) << "]}," << NL; in printJson()
|
| H A D | ProgramState.cpp | 492 bool IsDot) const { in printJson() 493 Indent(Out, Space, IsDot) << "\"program_state\": {" << NL; in printJson() 499 Mgr.getStoreManager().printJson(Out, getStore(), NL, Space, IsDot); in printJson() 502 Env.printJson(Out, Mgr.getContext(), LCtx, NL, Space, IsDot); in printJson() 505 Mgr.getConstraintManager().printJson(Out, this, NL, Space, IsDot); in printJson() 508 printDynamicTypeInfoJson(Out, this, NL, Space, IsDot); in printJson() 511 Mgr.getOwningEngine().printJson(Out, this, LCtx, NL, Space, IsDot); in printJson() 514 Indent(Out, Space, IsDot) << '}'; in printJson()
|
| H A D | RangeConstraintManager.cpp | 1907 unsigned int Space = 0, bool IsDot = false) const override; 1912 bool IsDot = false) const; 1915 bool IsDot = false) const; 1918 bool IsDot = false) const; 3275 bool IsDot) const { in printJson() 3276 printConstraints(Out, State, NL, Space, IsDot); in printJson() 3277 printEquivalenceClasses(Out, State, NL, Space, IsDot); in printJson() 3278 printDisequalities(Out, State, NL, Space, IsDot); in printJson() 3303 bool IsDot) const { in printConstraints() 3306 Indent(Out, Space, IsDot) << "\"constraints\": "; in printConstraints() [all …]
|
| H A D | ExprEngine.cpp | 688 unsigned int Space = 0, bool IsDot = false) { in printObjectsUnderConstructionJson() argument 716 Indent(Out, Space, IsDot) << "{ "; in printObjectsUnderConstructionJson() 726 Indent(Out, --Space, IsDot) << ']'; // End of "location_context". in printObjectsUnderConstructionJson() 734 const LocationContext *LCtx, unsigned int Space = 0, bool IsDot = false) { in printIndicesOfElementsToConstructJson() argument 764 Indent(Out, Space, IsDot) << "{ "; in printIndicesOfElementsToConstructJson() 788 Indent(Out, --Space, IsDot) << ']'; // End of "location_context". in printIndicesOfElementsToConstructJson() 798 bool IsDot = false) { in printPendingInitLoopJson() argument 828 Indent(Out, Space, IsDot) << "{ "; in printPendingInitLoopJson() 848 Indent(Out, --Space, IsDot) << ']'; // End of "location_context". in printPendingInitLoopJson() 857 unsigned int Space = 0, bool IsDot = false) { in printPendingArrayDestructionsJson() argument [all …]
|
| H A D | CheckerManager.cpp | 793 bool IsDot) const { in runCheckersForPrintStateJson() 794 Indent(Out, Space, IsDot) << "\"checker_messages\": "; in runCheckersForPrintStateJson() 805 Indent(NLOut, InnerSpace, IsDot) << "\""; // then begin the next message. in runCheckersForPrintStateJson() 835 Indent(Out, Space, IsDot) << "{ \"checker\": \"" << CT.second->getDebugTag() in runCheckersForPrintStateJson() 837 Indent(Out, InnerSpace, IsDot) in runCheckersForPrintStateJson() 839 Indent(Out, Space, IsDot) << "]}"; in runCheckersForPrintStateJson() 850 Indent(Out, --Space, IsDot) << "]"; in runCheckersForPrintStateJson()
|
| H A D | RegionStore.cpp | 233 unsigned int Space = 0, bool IsDot = false) const { in printJson() argument 292 Indent(Out, Space, IsDot) in printJson() 304 Indent(Out, Space, IsDot) << "{ " << Key << ", \"value\": "; in printJson() 312 Indent(Out, Space, IsDot) << "]}"; in printJson() 815 unsigned int Space = 0, bool IsDot = false) const override; 3149 unsigned int Space, bool IsDot) const { in printJson() 3152 Indent(Out, Space, IsDot) << "\"store\": "; in printJson() 3160 Bindings.printJson(Out, NL, Space + 1, IsDot); in printJson() 3161 Indent(Out, Space, IsDot) << "]}," << NL; in printJson()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | JsonSupport.h | 22 bool IsDot) { in Indent() argument 24 Out << (IsDot ? " " : " "); in Indent()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SMTConstraintManager.h | 221 unsigned int Space = 0, bool IsDot = false) const override { in REGISTER_TRAIT_WITH_PROGRAMSTATE() 224 Indent(Out, Space, IsDot) << "\"constraints\": "; in REGISTER_TRAIT_WITH_PROGRAMSTATE() 234 Indent(Out, Space, IsDot) in REGISTER_TRAIT_WITH_PROGRAMSTATE() 245 Indent(Out, Space, IsDot) << "],"; in REGISTER_TRAIT_WITH_PROGRAMSTATE()
|
| H A D | Environment.h | 96 unsigned int Space = 0, bool IsDot = false) const;
|
| H A D | Store.h | 261 unsigned int Space, bool IsDot) const = 0;
|
| H A D | ExprEngine.h | 416 unsigned int Space, bool IsDot) const;
|
| H A D | ProgramState.h | 479 bool IsDot = false) const;
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 530 unsigned int Space, bool IsDot, in printJson() argument 542 Indent(Out, Space, IsDot) in printJson()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Analysis/ |
| H A D | AnalysisDeclContext.h | 287 bool IsDot = false,
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/ |
| H A D | CheckerManager.h | 469 bool IsDot = false) const;
|