Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
584 return JSONValue::SP(new JSONNull()); in ParseJSONValue()