Searched refs:JSONTrue (Results 1 – 4 of 4) sorted by relevance
133 class JSONTrue : public JSONValue {135 JSONTrue();137 JSONTrue(const JSONTrue &s) = delete;138 JSONTrue &operator=(const JSONTrue &s) = delete;142 typedef std::shared_ptr<JSONTrue> SP;148 ~JSONTrue() override = default;
100 JSONTrue::JSONTrue() : JSONValue(JSONValue::Kind::True) {} in JSONTrue() function in JSONTrue102 void JSONTrue::Write(std::ostream &s) { s << "true"; } in Write()153 if (JSONTrue::classof(value_sp.get())) { in GetObjectAsBool()580 return JSONValue::SP(new JSONTrue()); in ParseJSONValue()
2502 if (!JSONTrue::classof(enabled_sp.get()) && in HandlePacket_QConfigureDarwinLog()2507 const bool enabling = JSONTrue::classof(enabled_sp.get()); in HandlePacket_QConfigureDarwinLog()
52 ParseAndTestJSON<JSONTrue>("true"); in TEST()