Home
last modified time | relevance | path

Searched refs:ParseJSONValue (Results 1 – 4 of 4) sorted by relevance

/llvm-project/lldb/source/Utility/
H A DStructuredData.cpp21 static StructuredData::ObjectSP ParseJSONValue(json::Value &value);
31 return ParseJSONValue(*value); in ParseJSON()
48 return ParseJSONValue(*value); in ParseJSONFromFile()
58 static StructuredData::ObjectSP ParseJSONValue(json::Value &value) { in ParseJSONValue() function
91 if (StructuredData::ObjectSP value_sp = ParseJSONValue(value)) in ParseJSONObject()
100 if (StructuredData::ObjectSP value_sp = ParseJSONValue(value)) in ParseJSONArray()
/llvm-project/lldb/tools/debugserver/source/
H A DJSON.cpp490 JSONValue::SP value_sp = ParseJSONValue(); in ParseJSONObject()
519 JSONValue::SP value_sp = ParseJSONValue(value, token); in ParseJSONArray()
537 JSONValue::SP JSONParser::ParseJSONValue() { in ParseJSONValue() function in JSONParser
540 return ParseJSONValue(value, token); in ParseJSONValue()
543 JSONValue::SP JSONParser::ParseJSONValue(const std::string &value, in ParseJSONValue() function in JSONParser
H A DJSON.h292 JSONValue::SP ParseJSONValue();
295 JSONValue::SP ParseJSONValue(const std::string &value, const Token &token);
/llvm-project/lldb/unittests/debugserver/
H A DJSONTest.cpp22 return JSONParser(json_string).ParseJSONValue(); in ParseJSON()