Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardClockFrame.kt42 val locationOnScreen = IntArray(2) in saveCanvasAlpha() constant
43 view.getLocationOnScreen(locationOnScreen) in saveCanvasAlpha()
44 Pair(locationOnScreen[0].toFloat(), locationOnScreen[1].toFloat()) in saveCanvasAlpha()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationTransitionAnimatorController.kt89 val location = notification.locationOnScreen in createAnimatorState()
120 .locationOnScreen[1] in createAnimatorState()
124 val locationOnScreen = notification.notificationParent.locationOnScreen[1] in createAnimatorState() constant
125 val parentRoundedClip = (clipStartLocation - locationOnScreen).coerceAtLeast(0) in createAnimatorState()
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/view/
DViewUtil.kt36 val left = view.locationOnScreen[0] in touchIsWithinView()
37 val top = view.locationOnScreen[1] in touchIsWithinView()
/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/regionsampling/
DRegionSampler.kt77 if (sampledView.locationOnScreen[0] < 0 || sampledView.locationOnScreen[1] < 0) { in onLayoutChange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DDozeServiceHost.java405 int[] locationOnScreen = new int[2]; in dispatchTouchEventToAmbientIndicationContainer() local
406 mAmbientIndicationContainer.getLocationOnScreen(locationOnScreen); in dispatchTouchEventToAmbientIndicationContainer()
407 float viewX = screenX - locationOnScreen[0]; in dispatchTouchEventToAmbientIndicationContainer()
408 float viewY = screenY - locationOnScreen[1]; in dispatchTouchEventToAmbientIndicationContainer()
DKeyguardBottomAreaView.kt153 val (ambientLeft, ambientTop) = it.locationOnScreen in <lambda>()
/frameworks/base/core/java/android/widget/
DNumberPicker.java2788 int[] locationOnScreen = mTempArray; in createAccessibiltyNodeInfoForInputText() local
2789 getLocationOnScreen(locationOnScreen); in createAccessibiltyNodeInfoForInputText()
2790 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibiltyNodeInfoForInputText()
2812 int[] locationOnScreen = mTempArray; in createAccessibilityNodeInfoForVirtualButton() local
2813 getLocationOnScreen(locationOnScreen); in createAccessibilityNodeInfoForVirtualButton()
2814 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForVirtualButton()
2861 int[] locationOnScreen = mTempArray; in createAccessibilityNodeInfoForNumberPicker() local
2862 getLocationOnScreen(locationOnScreen); in createAccessibilityNodeInfoForNumberPicker()
2863 boundsInScreen.offset(locationOnScreen[0], locationOnScreen[1]); in createAccessibilityNodeInfoForNumberPicker()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/util/view/
DViewUtilTest.kt49 `when`(view.locationOnScreen).thenReturn(location) in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/
DQSImplTest.java661 int[] locationOnScreen = invocation.getArgument(/* index= */ 0); in setLocationOnScreen()
662 locationOnScreen[0] = 0; in setLocationOnScreen()
663 locationOnScreen[1] = top; in setLocationOnScreen()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shared/regionsampling/
DRegionSamplerTest.kt59 whenever(sampledView.locationOnScreen).thenReturn(intArrayOf(0, 0)) in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/mediaprojection/appselector/view/
DMediaProjectionRecentsViewController.kt205 view.locationOnScreen, view.context.display.naturalBounds, handleResult) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/view/layout/sections/
DDefaultDeviceEntrySection.kt234 val (ambientLeft, ambientTop) = it.locationOnScreen in <lambda>()
/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/
DExpandable.kt420 val parentLocation = parent.locationOnScreen in measureAndLayoutComposeViewInOverlay()