Home
last modified time | relevance | path

Searched refs:windowMatchesAnyOf (Results 1 – 13 of 13) sorted by relevance

/platform_testing/libraries/flicker/utils/src/android/tools/traces/component/
DIComponentMatcher.kt32 fun windowMatchesAnyOf(window: WindowContainer): Boolean = windowMatchesAnyOf(listOf(window)) in windowMatchesAnyOf() method
38 fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean in windowMatchesAnyOf() method
112 windows.filter { windowMatchesAnyOf(it) } in filterWindows()
DOrComponentMatcher.kt27 override fun windowMatchesAnyOf(window: WindowContainer): Boolean { in <lambda>() method in android.tools.traces.component.OrComponentMatcher
28 return componentMatchers.any { it.windowMatchesAnyOf(window) } in <lambda>()
32 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean { in <lambda>() method in android.tools.traces.component.OrComponentMatcher
33 return componentMatchers.any { it.windowMatchesAnyOf(windows) } in <lambda>()
DFullComponentIdMatcher.kt35 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean = in windowMatchesAnyOf() method in android.tools.traces.component.FullComponentIdMatcher
40 parent != null -> windowMatchesAnyOf(parent) in windowMatchesAnyOf()
DExactComponentIdMatcher.kt36 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>) = in windowMatchesAnyOf() method in android.tools.traces.component.ExactComponentIdMatcher
DEdgeExtensionComponentMatcher.kt25 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean { in windowMatchesAnyOf() method in android.tools.traces.component.EdgeExtensionComponentMatcher
DComponentSplashScreenMatcher.kt25 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean { in windowMatchesAnyOf() method in android.tools.traces.component.ComponentSplashScreenMatcher
DComponentNameMatcher.kt48 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean = in windowMatchesAnyOf() method in android.tools.traces.component.ComponentNameMatcher
/platform_testing/libraries/flicker/utils/src/android/tools/traces/wm/
DWindowManagerState.kt304 return windowStates.filter { it.isSurfaceShown && componentMatcher.windowMatchesAnyOf(it) } in <lambda>()
328 componentMatcher.windowMatchesAnyOf(windowStates) in <lambda>()
347 componentMatcher.windowMatchesAnyOf(pinnedWindows) in <lambda>()
367 componentMatcher.windowMatchesAnyOf(windowStates) in <lambda>()
375 componentMatcher.windowMatchesAnyOf(visibleWindows) in <lambda>()
383 componentMatcher.windowMatchesAnyOf(nonAppWindows) in <lambda>()
392 return activity != null && componentMatcher.windowMatchesAnyOf(appWindows) in <lambda>()
401 componentMatcher.windowMatchesAnyOf(aboveAppWindows) in <lambda>()
409 componentMatcher.windowMatchesAnyOf(belowAppWindows) in <lambda>()
DActivity.kt41 componentMatcher.windowMatchesAnyOf(it) in <lambda>()
/platform_testing/libraries/flicker/src/android/tools/flicker/subject/wm/
DWindowManagerStateSubject.kt109 subjects.filter { componentMatcher.windowMatchesAnyOf(it.windowState) } in <lambda>()
161 wmState.windowStates.first { aboveWindowComponentMatcher.windowMatchesAnyOf(it) } in <lambda>()
163 wmState.windowStates.first { belowWindowComponentMatcher.windowMatchesAnyOf(it) } in <lambda>()
184 wmState.windowStates.indexOfFirst { aboveWindowComponentMatcher.windowMatchesAnyOf(it) } in <lambda>()
186 wmState.windowStates.indexOfFirst { belowWindowComponentMatcher.windowMatchesAnyOf(it) } in <lambda>()
226 componentMatcher.windowMatchesAnyOf(topVisibleAppWindow) in <lambda>()
247 topVisibleAppWindow != null && componentMatcher.windowMatchesAnyOf(topVisibleAppWindow) in <lambda>()
278 wmState.windowStates.firstOrNull { act.windowMatchesAnyOf(it) } in <lambda>()
485 subjectList.filter { componentMatcher.windowMatchesAnyOf(it.windowState) } in <lambda>()
510 subjectList.filter { componentMatcher.windowMatchesAnyOf(it.windowState) } in <lambda>()
[all …]
DWindowManagerTraceSubject.kt95 componentMatcher.windowMatchesAnyOf(it) in <lambda>()
578 ignoreWindows.none { matcher -> matcher.windowMatchesAnyOf(window) } in <lambda>()
/platform_testing/libraries/flicker/src/android/tools/flicker/assertors/assertions/
DHasAtMostOneWindowMatching.kt35 it.wmState.windowStates.count { window -> matcher.windowMatchesAnyOf(window) } in <lambda>()
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/
DWindowManagerStateHelper.kt90 componentMatcher.windowMatchesAnyOf(it) in getWindow()