Home
last modified time | relevance | path

Searched refs:eventLog (Results 1 – 5 of 5) sorted by relevance

/platform_testing/libraries/flicker/test/src/com/android/server/wm/flicker/monitor/
DEventLogMonitorTest.kt48 assertEquals(2, result.eventLog?.size) in canCaptureFocusEventLogs()
51 result.eventLog?.get(0)?.window) in canCaptureFocusEventLogs()
52 assertEquals(FocusEvent.Focus.LOST, result.eventLog?.get(0)?.focus) in canCaptureFocusEventLogs()
55 result.eventLog?.get(1)?.window) in canCaptureFocusEventLogs()
56 assertEquals(FocusEvent.Focus.GAINED, result.eventLog?.get(1)?.focus) in canCaptureFocusEventLogs()
57 assertTrue(result.eventLog?.get(0)?.timestamp ?: 0 in canCaptureFocusEventLogs()
58 <= result.eventLog?.get(1)?.timestamp ?: 0) in canCaptureFocusEventLogs()
59 assertEquals(result.eventLog?.get(0)?.reason, "test") in canCaptureFocusEventLogs()
90 assertEquals(2, result.eventLog?.size) in onlyCapturesLastTransition()
94 result.eventLog?.get(0)?.window) in onlyCapturesLastTransition()
[all …]
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/
DFlickerRunResult.kt118 var eventLog: List<FocusEvent>? = null in <lambda>() variable in com.android.server.wm.flicker.FlickerRunResult.Builder
156 val events = eventLog ?: emptyList() in <lambda>()
201 if (eventLog != null) { in <lambda>()
/platform_testing/libraries/flicker/test/src/com/android/server/wm/flicker/
DEventLogSubjectTest.kt31 builder.eventLog = in canDetectFocusChanges()
/platform_testing/libraries/junitxml/src/com/android/junitxml/
DAtestRunListener.java138 String eventLog = String.format("%s %s\n\n", key, new JSONObject(event)); in printEvent() local
139 fw.append(eventLog); in printEvent()
/platform_testing/libraries/flicker/src/com/android/server/wm/flicker/monitor/
DEventLogMonitor.kt75 flickerRunResultBuilder.eventLog = _logs.mapNotNull { event -> in <lambda>()