Searched refs:taskView (Results 1 – 10 of 10) sorted by relevance
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/taskview/ |
H A D | TaskViewTransitions.java | 79 @NonNull TaskViewTaskController taskView, in PendingTransition() argument 83 mTaskView = taskView; in PendingTransition() 202 if (taskView == null) return null; in handleRequest() 206 taskView, null /* cookie */); in handleRequest() 224 updateVisibilityState(taskView, true /* visible */); in startTaskView() 230 @NonNull TaskViewTaskController taskView) { in closeTaskView() argument 231 updateVisibilityState(taskView, false /* visible */); in closeTaskView() 237 if (mTaskViews.get(taskView) == null) return; in setTaskViewVisible() 239 if (taskView.getTaskInfo() == null) { in setTaskViewVisible() 243 mTaskViews.get(taskView).mVisible = visible; in setTaskViewVisible() [all …]
|
H A D | TaskViewFactoryController.java | 64 TaskView taskView = new TaskView(context, new TaskViewTaskController(context, in create() local 67 onCreate.accept(taskView); in create()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
H A D | PanelTaskViewController.kt | 40 val taskView: TaskView, 45 taskView.alpha = 0f 69 taskView.post { 75 taskView.background = 79 taskView.clipToOutline = true 80 taskView.startActivity( 84 taskView.boundsOnScreen 97 taskView.alpha = 1f 106 taskView.onLocationChanged() 112 taskView.release() [all …]
|
H A D | DetailDialog.kt | 51 val taskView: TaskView, 104 taskView.startActivity( 143 addView(taskView) 198 taskView.setCornerRadius(cornerRadius.toFloat()) 201 taskView.setListener(cvh.uiExecutor, stateCallback) 223 taskView.release()
|
H A D | ControlsUiControllerImpl.kt | 489 taskViewFactory.get().create(activityContext, uiExecutor) { taskView -> 494 taskView, 497 container.addView(taskView)
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/ui/ |
H A D | PanelTaskViewControllerTest.kt | 61 @Mock private lateinit var taskView: TaskView 75 whenever(taskView.post(any())).thenAnswer { 88 taskView, 95 verify(taskView).alpha = 0f 101 verify(taskView).setListener(eq(uiExecutor), any()) 107 verify(taskView).setListener(any(), capture(listenerCaptor)) 115 verify(taskView) 135 verify(taskView).alpha = 1f 151 verify(taskView).release() 160 verify(taskView).release() [all …]
|
H A D | DetailDialogTest.kt | 47 private lateinit var taskView: TaskView 73 verify(taskView).startActivity(eq(pendingIntent), any(), any(), any()) 87 verify(taskView).startActivity(any(), any(), capture(optionsCaptor), any()) 99 taskView,
|
H A D | ControlsUiControllerImplTest.kt | 504 val taskView: TaskView = mock { 511 taskViewConsumerCaptor.value.accept(taskView) 514 verify(taskView).onLocationChanged() 529 val taskView: TaskView = mock { 536 taskViewConsumerCaptor.value.accept(taskView) 538 verify(taskView).setListener(any(), capture(listenerCaptor)) 543 verify(taskView).startActivity(capture(pendingIntentCaptor), any(), any(), any())
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
H A D | ManageEducationView.kt | 102 expandedView.taskView?.setObscuredTouchRect(Rect(positioner.screenRect)) 149 bubbleExpandedView?.taskView?.setObscuredTouchRect(null)
|
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/taskview/ |
H A D | TaskViewTest.java | 147 TaskView taskView = new TaskView(mContext, in testSetPendingListener_throwsException() local 149 taskView.setListener(mExecutor, mViewListener); in testSetPendingListener_throwsException() 151 taskView.setListener(mExecutor, mViewListener); in testSetPendingListener_throwsException()
|