Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Utility/
H A DStructuredData.cpp20 static StructuredData::ObjectSP ParseJSONValue(json::Value &value);
31 return ParseJSONValue(*value); in ParseJSON()
48 return ParseJSONValue(*value); in ParseJSONFromFile()
53 static StructuredData::ObjectSP ParseJSONValue(json::Value &value) { in ParseJSONValue() function
80 if (StructuredData::ObjectSP value_sp = ParseJSONValue(value)) in ParseJSONObject()
89 if (StructuredData::ObjectSP value_sp = ParseJSONValue(value)) in ParseJSONArray()
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DJSON.cpp491 JSONValue::SP value_sp = ParseJSONValue(); in ParseJSONObject()
520 JSONValue::SP value_sp = ParseJSONValue(value, token); in ParseJSONArray()
538 JSONValue::SP JSONParser::ParseJSONValue() { in ParseJSONValue() function in JSONParser
541 return ParseJSONValue(value, token); in ParseJSONValue()
544 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-15.0.7/lldb/unittests/debugserver/
H A DJSONTest.cpp22 return JSONParser(json_string).ParseJSONValue(); in ParseJSON()