/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/smartspace/ |
D | SmartspaceState.kt | 29 var boundsOnScreen: Rect = Rect() variable in com.android.systemui.shared.system.smartspace.SmartspaceState 34 this.boundsOnScreen = parcel.readParcelable(Rect::javaClass.javaClass.classLoader) ?: Rect() 40 dest.writeParcelable(boundsOnScreen, 0) in writeToParcel() 50 return "boundsOnScreen: $boundsOnScreen, " + in toString()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | StatusBarBoundsProvider.kt | 26 import com.android.systemui.util.boundsOnScreen in <lambda>() 56 BoundsPair(start = startSideContent.boundsOnScreen, end = endSideContent.boundsOnScreen) in <lambda>() 88 get() = endSideContent.boundsOnScreen in <lambda>() 101 get() = startSideContent.boundsOnScreen in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/temporarydisplay/chipbar/ |
D | SwipeChipbarAwayGestureHandler.kt | 26 import com.android.systemui.util.boundsOnScreen 50 val viewBottom = view.boundsOnScreen.bottom in startOfGestureIsWithinBounds()
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/taskview/ |
D | TaskViewTaskController.java | 486 public void setWindowBounds(Rect boundsOnScreen) { in setWindowBounds() argument 494 mTaskViewTransitions.setTaskBounds(this, boundsOnScreen); in setWindowBounds() 500 wct.setBounds(mTaskToken, boundsOnScreen); in setWindowBounds() 674 Rect boundsOnScreen = mTaskViewBase.getCurrentBoundsOnScreen(); in prepareOpenAnimationInternal() local 679 .setWindowCrop(mTaskLeash, boundsOnScreen.width(), boundsOnScreen.height()); in prepareOpenAnimationInternal() 681 mTaskViewTransitions.updateBoundsState(this, boundsOnScreen); in prepareOpenAnimationInternal() 683 wct.setBounds(mTaskToken, boundsOnScreen); in prepareOpenAnimationInternal()
|
D | TaskViewTransitions.java | 288 void updateBoundsState(TaskViewTaskController taskView, Rect boundsOnScreen) { in updateBoundsState() argument 291 state.mBounds.set(boundsOnScreen); in updateBoundsState() 300 void setTaskBounds(TaskViewTaskController taskView, Rect boundsOnScreen) { in setTaskBounds() argument 302 if (state == null || Objects.equals(boundsOnScreen, state.mBounds)) { in setTaskBounds() 305 state.mBounds.set(boundsOnScreen); in setTaskBounds() 316 wct.setBounds(taskView.getTaskInfo().token, boundsOnScreen); in setTaskBounds() local
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
D | PanelTaskViewController.kt | 31 import com.android.systemui.util.boundsOnScreen 80 taskView.boundsOnScreen in onInitialized()
|
D | DetailDialog.kt | 39 import com.android.systemui.util.boundsOnScreen in <lambda>() 105 taskView.boundsOnScreen, in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/ |
D | ConvenienceExtensions.kt | 53 val View.boundsOnScreen: Rect constant
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/controls/ui/ |
D | PanelTaskViewControllerTest.kt | 32 import com.android.systemui.util.boundsOnScreen 74 whenever(taskView.boundsOnScreen).thenAnswer { (it.arguments[0] as Rect).set(FAKE_BOUNDS) } in setUp()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayoutTest.java | 737 Rect boundsOnScreen = new Rect(0, 0, 1000, 1000); in testInsideQSHeader_noOffset() local 738 mockBoundsOnScreen(qsHeader, boundsOnScreen); in testInsideQSHeader_noOffset() 754 Rect boundsOnScreen = new Rect(100, 100, 1000, 1000); in testInsideQSHeader_Offset() local 755 mockBoundsOnScreen(qsHeader, boundsOnScreen); in testInsideQSHeader_Offset()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/ |
D | NavigationBar.java | 943 RectF boundsOnScreen = mOrientationHandle.computeHomeHandleBounds(); in initSecondaryHomeHandleForRotation() 944 mOrientationHandle.mapRectFromViewToScreenCoords(boundsOnScreen, true); in initSecondaryHomeHandleForRotation() 946 boundsOnScreen.roundOut(boundsRounded); in initSecondaryHomeHandleForRotation()
|
/frameworks/base/core/java/android/view/ |
D | ViewRootImpl.java | 11252 Rect boundsOnScreen = new Rect(); in dispatchScrollCaptureSearchResponse() local 11254 boundsOnScreen.set(0, 0, mView.getWidth(), mView.getHeight()); in dispatchScrollCaptureSearchResponse() 11255 boundsOnScreen.offset(mAttachInfo.mTmpLocation[0], mAttachInfo.mTmpLocation[1]); in dispatchScrollCaptureSearchResponse() 11256 response.setWindowBounds(boundsOnScreen); in dispatchScrollCaptureSearchResponse()
|