Home
last modified time | relevance | path

Searched refs:IsDot (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DDynamicType.cpp192 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 DEnvironment.cpp217 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 DProgramState.cpp492 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 DRangeConstraintManager.cpp1907 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 DExprEngine.cpp688 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 DCheckerManager.cpp793 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 DRegionStore.cpp233 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 DJsonSupport.h22 bool IsDot) { in Indent() argument
24 Out << (IsDot ? "&nbsp;" : " "); in Indent()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConstraintManager.h221 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 DEnvironment.h96 unsigned int Space = 0, bool IsDot = false) const;
H A DStore.h261 unsigned int Space, bool IsDot) const = 0;
H A DExprEngine.h416 unsigned int Space, bool IsDot) const;
H A DProgramState.h479 bool IsDot = false) const;
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp530 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 DAnalysisDeclContext.h287 bool IsDot = false,
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h469 bool IsDot = false) const;