Home
last modified time | relevance | path

Searched refs:JSONNull (Results 1 – 3 of 3) sorted by relevance

/llvm-project/lldb/tools/debugserver/source/
H A DJSON.h169 class JSONNull : public JSONValue {
171 JSONNull();
173 JSONNull(const JSONNull &s) = delete;
174 JSONNull &operator=(const JSONNull &s) = delete;
178 typedef std::shared_ptr<JSONNull> SP;
184 ~JSONNull() override = default;
H A DJSON.cpp106 JSONNull::JSONNull() : JSONValue(JSONValue::Kind::Null) {} in JSONNull() function in JSONNull
108 void JSONNull::Write(std::ostream &s) { s << "null"; } in Write()
583 return JSONValue::SP(new JSONNull()); in ParseJSONValue()
/llvm-project/lldb/unittests/debugserver/
H A DJSONTest.cpp54 ParseAndTestJSON<JSONNull>("null"); in TEST()