Home
last modified time | relevance | path

Searched refs:fromJson (Results 1 – 3 of 3) sorted by relevance

/cts/tests/framework/base/windowmanager/src/android/server/wm/intent/
DPersistence.java93 public static TestCase fromJson(JSONObject object, in fromJson() method in Persistence.TestCase
95 return new TestCase(Setup.fromJson(object.getJSONObject(SETUP_KEY), table), in fromJson()
96 StateDump.fromJson(object.getJSONObject(INITIAL_STATE_KEY)), in fromJson()
97 StateDump.fromJson(object.getJSONObject(END_STATE_KEY)), name); in fromJson()
152 public static Setup fromJson(JSONObject object, in fromJson() method in Persistence.Setup
178 GenerationIntent intent = GenerationIntent.fromJson(object, table); in intentsFromJson()
209 static GenerationIntent fromJson(JSONObject object, Map<String, IntentFlag> table) in fromJson() method
212 return LaunchFromIntent.fromJson(object, table); in fromJson()
214 return LaunchIntent.fromJson(object, table); in fromJson()
270 public static LaunchIntent fromJson(JSONObject fakeIntent, Map<String, IntentFlag> table) in fromJson() method in Persistence.LaunchIntent
[all …]
DIntentGenerationTests.java123 return TestCase.fromJson(jsonInTestFile, TABLE, fileName); in readFromStorage()
DIntentTests.java137 TestCase testCase = TestCase.fromJson( in readAllFromAssets()