/aosp14/frameworks/base/core/tests/coretests/src/android/widget/espresso/ |
H A D | DragAction.java | 71 uiController, coordinates, precision) 105 return performDoubleTap(uiController, coordinates, precision); 137 uiController, coordinates, precision) 139 return performLongPress(uiController, coordinates, precision); 172 uiController, coordinates, precision) 190 uiController, coordinates, precision).down; 224 uiController, coordinates, precision) 252 return performLongPress(uiController, coordinates, precision); 279 return performDoubleTap(uiController, coordinates, precision); 369 uiController, coordinates, precision) in performLongPress() [all …]
|
H A D | MouseClickAction.java | 45 public Tapper.Status sendTap(UiController uiController, float[] coordinates, in sendTap() argument 47 Tapper.Status stat = sendSingleTap(uiController, coordinates, precision, in sendTap() 61 stat = sendSingleTap(uiController, coordinates, precision, inputDevice, in sendTap() 78 public Tapper.Status sendTap(UiController uiController, float[] coordinates, in sendTap() argument 80 return sendTap(uiController, coordinates, precision, InputDevice.SOURCE_UNKNOWN, in sendTap() 86 float[] coordinates, float[] precision, int inputDevice, int buttonState) { in sendSingleTap() argument 87 DownResultHolder res = MotionEvents.sendDown(uiController, coordinates, precision, in sendSingleTap()
|
/aosp14/frameworks/base/keystore/java/android/security/keystore2/ |
H A D | AndroidKeyStoreEdECPublicKey.java | 115 private static EdECPoint pointFromKeyByteArray(byte[] coordinates) { in pointFromKeyByteArray() argument 116 Objects.requireNonNull(coordinates); in pointFromKeyByteArray() 119 boolean isOdd = (0x80 & coordinates[coordinates.length - 1]) != 0; in pointFromKeyByteArray() 121 coordinates[coordinates.length - 1] &= (byte) 0x7f; in pointFromKeyByteArray() 123 reverse(coordinates); in pointFromKeyByteArray() 125 BigInteger y = new BigInteger(1, coordinates); in pointFromKeyByteArray()
|
/aosp14/frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/ |
H A D | ListViewScrollActivity.java | 69 int[] coordinates = new int[2]; in onCreate() 70 v.getLocationOnScreen(coordinates); in onCreate() 72 int x = coordinates[0]; in onCreate() 73 int y = coordinates[1]; in onCreate()
|
H A D | TextScrollActivity.java | 70 int[] coordinates = new int[2]; in onCreate() 71 v.getLocationOnScreen(coordinates); in onCreate() 73 int x = coordinates[0]; in onCreate() 74 int y = coordinates[1]; in onCreate()
|
H A D | FullScreenOverdrawActivity.java | 97 int[] coordinates = new int[2]; in onCreate() 98 overdrawView.getLocationOnScreen(coordinates); in onCreate() 100 int x = coordinates[0]; in onCreate() 101 int y = coordinates[1]; in onCreate()
|
H A D | ShadowGridActivity.java | 70 int[] coordinates = new int[2]; in onCreate() 71 v.getLocationOnScreen(coordinates); in onCreate() 73 int x = coordinates[0]; in onCreate() 74 int y = coordinates[1]; in onCreate()
|
H A D | EditTextInputActivity.java | 63 int[] coordinates = new int[2]; in onCreate() 64 editText.getLocationOnScreen(coordinates); in onCreate() 66 int x = coordinates[0]; in onCreate() 67 int y = coordinates[1]; in onCreate()
|
H A D | BitmapUploadActivity.java | 141 int[] coordinates = new int[2]; in onCreate() 142 uploadRoot.getLocationOnScreen(coordinates); in onCreate() 144 int x = coordinates[0]; in onCreate() 145 int y = coordinates[1]; in onCreate()
|
/aosp14/frameworks/base/core/java/android/transition/ |
H A D | VisibilityPropagation.java | 109 int[] coordinates = (int[]) values.values.get(PROPNAME_VIEW_CENTER); in getViewCoordinate() local 110 if (coordinates == null) { in getViewCoordinate() 114 return coordinates[coordinateIndex]; in getViewCoordinate()
|
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/ui/ |
H A D | Category.kt | 64 modifier = Modifier.onGloballyPositioned { coordinates -> 65 displayTitle = coordinates.size.height > 0
|
/aosp14/frameworks/base/cmds/hid/ |
H A D | README.md | 123 2. Send button down event with coordinates ABS_X, ABS_Y, ABS_Z, and ABS_RZ 124 at the center of the range. If the coordinates are not centered, this event 127 3. Send the button up event with the same coordinates as in 2. 140 the reported coordinates are at the center of the range.
|
/aosp14/frameworks/base/core/java/com/android/internal/view/inline/ |
H A D | InlineTooltipUi.java | 440 final int[] coordinates = mContentContainer.getLocationOnScreen(); in dump() local 441 pw.print(coordinates[0]); pw.print("x"); pw.println(coordinates[1]); in dump()
|
/aosp14/frameworks/base/core/proto/android/view/ |
H A D | remote_animation_target.proto | 39 // The source position of the app, in screen spaces coordinates. If the
|
/aosp14/frameworks/base/packages/SettingsLib/Spa/spa/src/com/android/settingslib/spa/widget/scaffold/ |
H A D | CustomizedAppBar.kt | 381 Box(modifier = Modifier.onGloballyPositioned { coordinates -> 383 MaxHeightWithoutTitle.toPx() + coordinates.size.height.toFloat()
|
/aosp14/frameworks/base/services/autofill/java/com/android/server/autofill/ui/ |
H A D | FillUi.java | 812 final int[] coordinates = mWindow.mContentView.getLocationOnScreen(); in dump() local 813 pw.print(coordinates[0]); pw.print("x"); pw.println(coordinates[1]); in dump()
|
/aosp14/frameworks/base/core/tests/coretests/src/android/widget/ |
H A D | EditorCursorDragTest.java | 706 MotionEvent.PointerCoords coordinates = new MotionEvent.PointerCoords(); in obtainTouchEventWithPointerId() local 707 coordinates.x = rawX; in obtainTouchEventWithPointerId() 708 coordinates.y = rawY; in obtainTouchEventWithPointerId() 711 new MotionEvent.PointerCoords[] {coordinates}, in obtainTouchEventWithPointerId()
|
/aosp14/frameworks/base/packages/SystemUI/docs/ |
H A D | media-controls.md | 53 * Manages the various media host states and coordinates heights between different players
|
/aosp14/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/animation/scene/ |
H A D | Element.kt | 314 val coords = coordinates!!
|
/aosp14/frameworks/base/cmds/bootanimation/ |
H A D | FORMAT.md | 53 …* **CLOCK1, CLOCK2:** _(OPTIONAL)_ the coordinates at which to draw the current time (for watches):
|