/platform_testing/libraries/flicker/utils/src/android/tools/traces/component/ |
D | IComponentMatcher.kt | 32 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()
|
D | OrComponentMatcher.kt | 27 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>()
|
D | FullComponentIdMatcher.kt | 35 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean = in windowMatchesAnyOf() method in android.tools.traces.component.FullComponentIdMatcher 40 parent != null -> windowMatchesAnyOf(parent) in windowMatchesAnyOf()
|
D | ExactComponentIdMatcher.kt | 36 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>) = in windowMatchesAnyOf() method in android.tools.traces.component.ExactComponentIdMatcher
|
D | EdgeExtensionComponentMatcher.kt | 25 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean { in windowMatchesAnyOf() method in android.tools.traces.component.EdgeExtensionComponentMatcher
|
D | ComponentSplashScreenMatcher.kt | 25 override fun windowMatchesAnyOf(windows: Collection<WindowContainer>): Boolean { in windowMatchesAnyOf() method in android.tools.traces.component.ComponentSplashScreenMatcher
|
D | ComponentNameMatcher.kt | 48 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/ |
D | WindowManagerState.kt | 304 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>()
|
D | Activity.kt | 41 componentMatcher.windowMatchesAnyOf(it) in <lambda>()
|
/platform_testing/libraries/flicker/src/android/tools/flicker/subject/wm/ |
D | WindowManagerStateSubject.kt | 109 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 …]
|
D | WindowManagerTraceSubject.kt | 95 componentMatcher.windowMatchesAnyOf(it) in <lambda>() 578 ignoreWindows.none { matcher -> matcher.windowMatchesAnyOf(window) } in <lambda>()
|
/platform_testing/libraries/flicker/src/android/tools/flicker/assertors/assertions/ |
D | HasAtMostOneWindowMatching.kt | 35 it.wmState.windowStates.count { window -> matcher.windowMatchesAnyOf(window) } in <lambda>()
|
/platform_testing/libraries/flicker/utils/src/android/tools/traces/parsers/ |
D | WindowManagerStateHelper.kt | 90 componentMatcher.windowMatchesAnyOf(it) in getWindow()
|