Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/
H A DJSON.h171 class JSONNull : public JSONValue {
173 JSONNull();
175 JSONNull(const JSONNull &s) = delete;
176 JSONNull &operator=(const JSONNull &s) = delete;
180 typedef std::shared_ptr<JSONNull> SP;
186 ~JSONNull() override = default;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/
H A DJSON.cpp112 JSONNull::JSONNull() : JSONValue(JSONValue::Kind::Null) {} in JSONNull() function in JSONNull
114 void JSONNull::Write(Stream &s) { s.Printf("null"); } in Write()
545 return JSONValue::SP(new JSONNull()); in ParseJSONValue()