Lines Matching refs:json
22 static void EmplaceSafeString(llvm::json::Object &obj, llvm::StringRef key, in EmplaceSafeString()
26 if (LLVM_LIKELY(llvm::json::isUTF8(str))) in EmplaceSafeString()
29 obj.try_emplace(key, llvm::json::fixUTF8(str)); in EmplaceSafeString()
32 json::Value StatsSuccessFail::ToJSON() const { in ToJSON()
33 return json::Object{{"successes", successes}, {"failures", failures}}; in ToJSON()
48 json::Value ModuleStats::ToJSON() const { in ToJSON()
49 json::Object module; in ToJSON()
75 json::Array symfile_ids; in ToJSON()
82 json::Array type_systems; in ToJSON()
84 json::Object obj; in ToJSON()
94 llvm::json::Value ConstStringStats::ToJSON() const { in ToJSON()
95 json::Object obj; in ToJSON()
102 json::Value TargetStats::ToJSON(Target &target) { in ToJSON()
105 json::Array json_module_uuid_array; in ToJSON()
109 json::Object target_metrics_json{ in ToJSON()
127 json::Array breakpoints_array; in ToJSON()
186 llvm::json::Value DebuggerStats::ReportStatistics(Debugger &debugger, in ReportStatistics()
188 json::Array json_targets; in ReportStatistics()
189 json::Array json_modules; in ReportStatistics()
290 json::Object json_memory{ in ReportStatistics()
294 json::Object global_stats{ in ReportStatistics()