Searched refs:JSONTrue (Results 1 – 2 of 2) sorted by relevance
135 class JSONTrue : public JSONValue {137 JSONTrue();139 JSONTrue(const JSONTrue &s) = delete;140 JSONTrue &operator=(const JSONTrue &s) = delete;144 typedef std::shared_ptr<JSONTrue> SP;150 ~JSONTrue() override = default;
104 JSONTrue::JSONTrue() : JSONValue(JSONValue::Kind::True) {} in JSONTrue() function in JSONTrue106 void JSONTrue::Write(Stream &s) { s.Printf("true"); } in Write()539 return JSONValue::SP(new JSONTrue()); in ParseJSONValue()