Searched refs:underlyingObject (Results 1 – 5 of 5) sorted by relevance
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/magnetictarget/ |
H A D | MagnetizedObject.kt | 60 val underlyingObject: T, 70 abstract fun getWidth(underlyingObject: T): Float 73 abstract fun getHeight(underlyingObject: T): Float 79 abstract fun getLocationOnScreen(underlyingObject: T, loc: IntArray) 491 getLocationOnScreen(underlyingObject, objectLocationOnScreen) 497 getWidth(underlyingObject) / 2f - objectLocationOnScreen[0] 650 override fun getWidth(underlyingObject: T): Float { 651 return underlyingObject.width.toFloat() 654 override fun getHeight(underlyingObject: T): Float { 655 return underlyingObject.height.toFloat() } [all …]
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
H A D | DismissAnimationController.java | 87 public void getLocationOnScreen(MenuView underlyingObject, int[] loc) { in DismissAnimationController() 88 underlyingObject.getLocationOnScreen(loc); in DismissAnimationController() 92 public float getHeight(MenuView underlyingObject) { in DismissAnimationController() 93 return underlyingObject.getHeight(); in DismissAnimationController() 97 public float getWidth(MenuView underlyingObject) { in DismissAnimationController() 98 return underlyingObject.getWidth(); in DismissAnimationController()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/common/magnetictarget/ |
H A D | MagnetizedObjectTest.kt | 53 private val underlyingObject = this regex 119 context, underlyingObject, xProperty, yProperty) { 120 override fun getWidth(underlyingObject: MagnetizedObjectTest): Float { 124 override fun getHeight(underlyingObject: MagnetizedObjectTest): Float { 129 underlyingObject: MagnetizedObjectTest,
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/animation/ |
H A D | ExpandedAnimationController.java | 346 public float getWidth(@NonNull View underlyingObject) { in prepareForBubbleDrag() 351 public float getHeight(@NonNull View underlyingObject) { in prepareForBubbleDrag() 356 public void getLocationOnScreen(@NonNull View underlyingObject, @NonNull int[] loc) { in prepareForBubbleDrag()
|
H A D | StackAnimationController.java | 1007 public float getWidth(@NonNull StackAnimationController underlyingObject) { in getMagnetizedStack() 1012 public float getHeight(@NonNull StackAnimationController underlyingObject) { in getMagnetizedStack() 1017 public void getLocationOnScreen(@NonNull StackAnimationController underlyingObject, in getMagnetizedStack()
|