Lines Matching refs:json
285 static json::Object toJSON(const Request &Request, StringRef ErrorMsg = "") { in toJSON()
286 json::Object Json({{"ModuleName", Request.ModuleName.str()}}); in toJSON()
292 Json["Error"] = json::Object({{"Message", ErrorMsg.str()}}); in toJSON()
296 static json::Object toJSON(const DILineInfo &LineInfo) { in toJSON()
297 return json::Object( in toJSON()
321 json::Array Array; in print()
324 json::Object Object = toJSON(LineInfo); in print()
334 json::Object Json = toJSON(Request); in print()
343 json::Object Data( in print()
347 json::Object Json = toJSON(Request); in print()
357 json::Array Frame; in print()
359 json::Object FrameObject( in print()
370 json::Object Json = toJSON(Request); in print()
380 json::Array Definitions; in print()
383 json::Object Json = toJSON(Request); in print()
393 json::Object Json = toJSON(Request, ErrorInfo.message()); in printError()
403 ObjectList = std::make_unique<json::Array>(); in listBegin()