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.java128 private final List<GenerationIntent> mInitialIntents;
133 private final List<GenerationIntent> mAct;
135 public Setup(List<GenerationIntent> initialIntents, List<GenerationIntent> act) { in Setup()
142 .map(GenerationIntent::getActualIntent) in componentsInCase()
155 List<GenerationIntent> initialState = intentsFromJson( in fromJson()
157 List<GenerationIntent> act = intentsFromJson(object.getJSONArray(ACT_KEY), table); in fromJson()
163 public static JSONArray intentsToJson(List<GenerationIntent> intents) in intentsToJson()
167 for (GenerationIntent intent : intents) { in intentsToJson()
173 public static List<GenerationIntent> intentsFromJson(JSONArray intentArray, in intentsFromJson()
175 List<GenerationIntent> intents = new ArrayList<>(); in intentsFromJson()
[all …]
DLaunchRunner.java42 import android.server.wm.intent.Persistence.GenerationIntent;
95 List<GenerationIntent> initialState = testCase.getSetup().getInitialIntents(); in verify()
96 List<GenerationIntent> act = testCase.getSetup().getAct(); in verify()
101 GenerationIntent firstIntent = initialState.get(0); in verify()
111 GenerationIntent generationIntent = initialState.get(i); in verify()
125 GenerationIntent generationIntent = act.get(i); in verify()
164 List<GenerationIntent> setupIntents = prepareSerialisation(executionInfo.setup); in runAndSerialize()
165 List<GenerationIntent> actIntents = prepareSerialisation(executionInfo.acts, in runAndSerialize()