Searched refs:fromJson (Results 1 – 8 of 8) sorted by relevance
/test/vti/dashboard/src/main/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntity.java | 225 public static TestAcknowledgmentEntity fromJson(User user, JsonObject json) { in fromJson() method in TestAcknowledgmentEntity 234 branches = new Gson().fromJson(json.get(BRANCHES), listType); in fromJson() 239 devices = new Gson().fromJson(json.get(DEVICES), listType); in fromJson() 244 testCaseNames = new Gson().fromJson(json.get(TEST_CASE_NAMES), listType); in fromJson()
|
/test/vti/dashboard/src/test/java/com/android/vts/api/ |
D | DataRestServletTest.java | 116 LinkedList resultList = gson.fromJson(result, LinkedList.class); in testBranchData() 137 LinkedList resultList = gson.fromJson(result, LinkedList.class); in testDeviceData()
|
D | CoverageRestServletTest.java | 103 LinkedTreeMap resultMap = gson.fromJson(result, LinkedTreeMap.class); in testApiData()
|
/test/vti/dashboard/src/test/java/com/android/vts/entity/ |
D | TestAcknowledgmentEntityTest.java | 138 TestAcknowledgmentEntity deserialized = TestAcknowledgmentEntity.fromJson(user, json); in testJsonSerialization() 159 TestAcknowledgmentEntity deserialized = TestAcknowledgmentEntity.fromJson(user, json); in testJsonSerializationWithNulls()
|
/test/vti/dashboard/src/main/java/com/android/vts/api/ |
D | TestAcknowledgmentRestServlet.java | 97 TestAcknowledgmentEntity ack = TestAcknowledgmentEntity.fromJson(currentUser, json); in doPost()
|
D | TestDataForDevServlet.java | 393 gson.fromJson(postJsonReader, TestReportDataObject.class); in doPost() 567 gson.fromJson(postJsonReader, TestPlanReportDataObject.class); in doPost()
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/suite/ |
D | PreviousResultLoader.java | 161 RunHistory[] runHistories = gson.fromJson(runHistoryJSON, RunHistory[].class); in init()
|
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/ |
D | ResultReporter.java | 600 RunHistory[] runHistoryArray = gson.fromJson(runHistoryJSON, RunHistory[].class); in finalizeResults()
|