Home
last modified time | relevance | path

Searched refs:GenerationIntent (Results 1 – 2 of 2) sorted by relevance

/cts/tests/framework/base/windowmanager/src/android/server/wm/intent/
DPersistence.java127 private final List<GenerationIntent> mInitialIntents;
132 private final List<GenerationIntent> mAct;
134 public Setup(List<GenerationIntent> initialIntents, List<GenerationIntent> act) { in Setup()
141 .map(GenerationIntent::getActualIntent) in componentsInCase()
154 List<GenerationIntent> initialState = intentsFromJson( in fromJson()
156 List<GenerationIntent> act = intentsFromJson(object.getJSONArray(ACT_KEY), table); in fromJson()
162 public static JSONArray intentsToJson(List<GenerationIntent> intents) in intentsToJson()
166 for (GenerationIntent intent : intents) { in intentsToJson()
172 public static List<GenerationIntent> intentsFromJson(JSONArray intentArray, in intentsFromJson()
174 List<GenerationIntent> intents = new ArrayList<>(); in intentsFromJson()
[all …]
DLaunchRunner.java38 import android.server.wm.intent.Persistence.GenerationIntent;
89 List<GenerationIntent> initialState = testCase.getSetup().getInitialIntents(); in verify()
90 List<GenerationIntent> act = testCase.getSetup().getAct(); in verify()
95 GenerationIntent firstIntent = initialState.get(0); in verify()
100 GenerationIntent generationIntent = initialState.get(i); in verify()
114 GenerationIntent generationIntent = act.get(i); in verify()
153 List<GenerationIntent> setupIntents = prepareSerialisation(executionInfo.setup); in runAndSerialize()
154 List<GenerationIntent> actIntents = prepareSerialisation(executionInfo.acts, in runAndSerialize()