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.java41 import android.server.wm.intent.Persistence.GenerationIntent;
93 List<GenerationIntent> initialState = testCase.getSetup().getInitialIntents(); in verify()
94 List<GenerationIntent> act = testCase.getSetup().getAct(); in verify()
99 GenerationIntent firstIntent = initialState.get(0); in verify()
104 GenerationIntent generationIntent = initialState.get(i); in verify()
118 GenerationIntent generationIntent = act.get(i); in verify()
157 List<GenerationIntent> setupIntents = prepareSerialisation(executionInfo.setup); in runAndSerialize()
158 List<GenerationIntent> actIntents = prepareSerialisation(executionInfo.acts, in runAndSerialize()