Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DWindowManagerState.java332 return getMatchingWindows(ws -> type == ws.mType).collect(Collectors.toList()); in getMatchingWindowType()
336 return getMatchingWindows(ws -> windowName.equals(ws.getName())) in getMatchingWindowTokens()
342 return getMatchingWindows(WindowManagerState::isValidNavBarType) in getAllNavigationBarStates()
347 List<WindowState> navWindow = getMatchingWindows(ws -> in getAndAssertSingleNavBarWindowOnDisplay()
364 return getMatchingWindows(ws -> ws.isShown() && windowName.equals(ws.getName())) in getMatchingVisibleWindowState()
369 return getMatchingWindows(WindowState::isExitingWindow) in getExitingWindows()
373 private Stream<WindowState> getMatchingWindows(Predicate<WindowState> condition) { in getMatchingWindows() method in WindowManagerState
384 return getMatchingWindows(ws -> in getWindowsByPackageName()
391 return getMatchingWindows(ws -> ws.getToken().equals(appToken)) in getWindowStateForAppToken()