Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/taskview/
DTaskViewTest.java186 verify(mViewListener).onTaskVisibilityChanged(eq(mTaskInfo.taskId), eq(false)); in testOnTaskAppeared_noSurface_legacyTransitions()
197 verify(mViewListener, never()).onTaskVisibilityChanged(anyInt(), anyBoolean()); in testOnTaskAppeared_withSurface_legacyTransitions()
208 verify(mViewListener, never()).onTaskVisibilityChanged(anyInt(), anyBoolean()); in testSurfaceCreated_noTask_legacyTransitions()
219 verify(mViewListener).onTaskVisibilityChanged(eq(mTaskInfo.taskId), eq(true)); in testSurfaceCreated_withTask_legacyTransitions()
229 verify(mViewListener, never()).onTaskVisibilityChanged(anyInt(), anyBoolean()); in testSurfaceDestroyed_noTask_legacyTransitions()
243 verify(mViewListener, never()).onTaskVisibilityChanged(anyInt(), anyBoolean()); in testSurfaceDestroyed_withTask_shouldNotHideTask_legacyTransitions()
255 verify(mViewListener).onTaskVisibilityChanged(eq(mTaskInfo.taskId), eq(false)); in testSurfaceDestroyed_withTask_legacyTransitions()
318 verify(mViewListener).onTaskVisibilityChanged(eq(mTaskInfo.taskId), eq(false)); in testOnNewTask_noSurface()
330 verify(mViewListener, never()).onTaskVisibilityChanged(anyInt(), anyBoolean()); in testSurfaceCreated_noTask()
343 verify(mViewListener, never()).onTaskVisibilityChanged(anyInt(), anyBoolean()); in testOnNewTask_withSurface()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBubbleTaskView.kt69 override fun onTaskVisibilityChanged(taskId: Int, visible: Boolean) { in onTaskVisibilityChanged() method
70 delegateListener?.onTaskVisibilityChanged(taskId, visible) in onTaskVisibilityChanged()
DBubbleTaskViewHelper.java175 public void onTaskVisibilityChanged(int taskId, boolean visible) {
DBubbleExpandedView.java296 public void onTaskVisibilityChanged(int taskId, boolean visible) {
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/taskview/
DTaskViewTaskController.java338 mListener.onTaskVisibilityChanged(taskId, mSurfaceCreated); in updateTaskVisibility()
637 mListener.onTaskVisibilityChanged(taskId, mSurfaceCreated /* visible */); in prepareHideAnimation()
712 mListener.onTaskVisibilityChanged(taskId, mSurfaceCreated /* visible */); in prepareOpenAnimationInternal()
DTaskView.java64 default void onTaskVisibilityChanged(int taskId, boolean visible) {} in onTaskVisibilityChanged() method