Home
last modified time | relevance | path

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

/external/llvm-project/lldb/tools/debugserver/source/
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;
DJSON.cpp108 JSONNull::JSONNull() : JSONValue(JSONValue::Kind::Null) {} in JSONNull() function in JSONNull
110 void JSONNull::Write(std::ostream &s) { s << "null"; } in Write()
586 return JSONValue::SP(new JSONNull()); in ParseJSONValue()
/external/autotest/frontend/client/src/autotest/moblab/rpc/
DWifiInfo.java3 import com.google.gwt.json.client.JSONNull;
71 object.put(JSON_FIELD_AP_NAME, JSONNull.getInstance()); in toJson()
76 object.put(JSON_FIELD_AP_PASS, JSONNull.getInstance()); in toJson()
DMoblabRpcHelper.java3 import com.google.gwt.json.client.JSONNull;
/external/autotest/frontend/client/src/autotest/common/
DJsonRpcProxy.java6 import com.google.gwt.json.client.JSONNull;
81 if (params.get(key) != JSONNull.getInstance()) in processParams()
/external/llvm-project/lldb/unittests/debugserver/
DJSONTest.cpp54 ParseAndTestJSON<JSONNull>("null"); in TEST()
/external/autotest/frontend/client/src/autotest/afe/create/
DCreateJobViewPresenter.java44 import com.google.gwt.json.client.JSONNull;
690 synchCount = JSONNull.getInstance(); in submitJob()