/aosp12/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | VelocityTest.java | 54 drag(vt, 100, 200, 100, 200, 10, t, 300); in testClear() 93 drag(vt, 100, 200, 200, 200, 15, t, 400); in testDragLinearHorizontal() 106 drag(vt, 200, 200, 100, 200, 15, t, 400); in testDragLinearVertical() 123 drag(vt, 100, 200, 100, 200, 2, t, 100); in testDragWith2Points() 139 drag(vt, 100, 200, 100, 200, 10, t, 400); // 10 steps over 400ms in testStabilityInNbPoints() 144 drag(vt, 100, 200, 100, 200, 20, t, 400); // 20 steps over 400ms in testStabilityInNbPoints() 161 drag(vt, 100, 200, 100, 200, 10, t, 400); in testStabilityInTime() 183 drag(vt, 100, 200, 100, 200, 10, t, 400); in testStabilityInSpace() 188 drag(vt, 200, 300, 200, 300, 10, t, 400); // 100px further in testStabilityInSpace() 205 drag(vt, 100, 200, 100, 200, 10, t, 300); in testStabilityOfComputation() [all …]
|
/aosp12/frameworks/base/test-runner/src/android/test/ |
H A D | TouchUtils.java | 76 drag(test, x, x, fromY, toY, 4); in dragQuarterScreenDown() 105 drag(test, x, x, fromY, toY, 4); in dragQuarterScreenUp() 255 drag(test, x, x, fromY, toY, stepCount); in dragViewToBottom() 498 drag(test, x, x, fromY, toY, stepCount); in dragViewToTop() 593 drag(test, fromX, fromX + deltaX, fromY, fromY + deltaY, distance); in dragViewBy() 645 drag(test, fromX, toX, fromY, toY, distance); in dragViewTo() 692 drag(test, fromX, toX, fromY, fromY, deltaX); in dragViewToX() 739 drag(test, fromX, fromX, fromY, toY, deltaY); in dragViewToY() 760 public static void drag(ActivityInstrumentationTestCase test, float fromX, float toX, in drag() method in TouchUtils 762 drag((InstrumentationTestCase) test, fromX, toX, fromY, toY, stepCount); in drag() [all …]
|
/aosp12/frameworks/native/libs/input/ |
H A D | InputTransport.cpp | 285 msg->body.drag.eventId = body.drag.eventId; in getSanitizedCopy() 286 msg->body.drag.x = body.drag.x; in getSanitizedCopy() 287 msg->body.drag.y = body.drag.y; in getSanitizedCopy() 288 msg->body.drag.isExiting = body.drag.isExiting; in getSanitizedCopy() 661 msg.body.drag.eventId = eventId; in publishDragEvent() 662 msg.body.drag.isExiting = isExiting; in publishDragEvent() 663 msg.body.drag.x = x; in publishDragEvent() 664 msg.body.drag.y = y; in publishDragEvent() 1345 event->initialize(msg->body.drag.eventId, msg->body.drag.x, msg->body.drag.y, in initializeDragEvent() 1346 msg->body.drag.isExiting); in initializeDragEvent() [all …]
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
H A D | ExpandHelper.java | 194 float drag = mSGD.getFocusY() - mInitialTouchFocusY; in updateExpansion() local 195 drag *= USE_DRAG ? 1f : 0f; in updateExpansion() 196 drag *= mGravity == Gravity.BOTTOM ? -1f : 1f; in updateExpansion() 197 float pull = Math.abs(drag) + Math.abs(span) + 1f; in updateExpansion() 198 float hand = drag * Math.abs(drag) / pull + span * Math.abs(span) / pull; in updateExpansion()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
H A D | ControlActionCoordinator.kt | 59 fun drag(isEdge: Boolean) regex
|
H A D | ControlActionCoordinatorImpl.kt | 99 override fun drag(isEdge: Boolean) { 108 controlsMetricsLogger.drag(cvh, isLocked)
|
H A D | ToggleRangeBehavior.kt | 238 cvh.controlActionCoordinator.drag(isEdge)
|
/aosp12/frameworks/base/libs/WindowManager/Shell/tests/flicker/src/com/android/wm/shell/flicker/bubble/ |
H A D | DismissBubbleScreen.kt | 62 showBubble?.run { drag(dist, 1000) } ?: error("Show bubble not found")
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ |
H A D | ControlsMetricsLogger.kt | 40 fun drag(cvh: ControlViewHolder, isLocked: Boolean) { regex
|
/aosp12/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
H A D | InteractionController.java | 436 public boolean swipe(int downX, int downY, int upX, int upY, int steps, boolean drag) { 451 if (drag) 463 if (drag)
|
H A D | UiDevice.java | 451 public boolean drag(int startX, int startY, int endX, int endY, int steps) { in drag() method in UiDevice
|
/aosp12/frameworks/base/core/proto/android/os/ |
H A D | statsdata.proto | 30 // in AOSP because it would drag with it atoms.proto, which is enormous and awkward.
|
/aosp12/frameworks/libs/native_bridge_support/vdso/ |
H A D | Android.bp | 39 // Make sure we do not drag any dependencies for vdso library (-Wl,--exclude-libs,ALL)
|
/aosp12/frameworks/native/include/input/ |
H A D | InputTransport.h | 200 } drag; member
|
/aosp12/frameworks/base/test-runner/api/ |
H A D | current.txt | 212 …method @Deprecated public static void drag(android.test.ActivityInstrumentationTestCase, float, fl… 213 …method @Deprecated public static void drag(android.test.InstrumentationTestCase, float, float, flo…
|
/aosp12/frameworks/base/packages/SystemUI/docs/ |
H A D | physics-animation-layout.md | 10 …o configure the translation animations to be chained (for the ‘following’ drag effect), and has me…
|
/aosp12/frameworks/base/cmds/uiautomator/api/ |
H A D | current.txt | 29 method @Deprecated public boolean drag(int, int, int, int, int);
|
/aosp12/packages/apps/Dialer/java/com/android/dialer/logging/ |
H A D | dialer_impression.proto | 795 FAVORITE_REMOVE_FAVORITE = 1406; // Include drag and drop
|
/aosp12/frameworks/base/proto/src/metrics_constants/ |
H A D | metrics_constants.proto | 1677 // ACTION: Overview > Long-press task, drag to enter split-screen 3727 // VALUE: 0 if dismissed by tap, 1 if dismissed by drag
|
/aosp12/frameworks/proto_logging/stats/ |
H A D | atoms.proto | 3556 // The event id (e.g., app launch, drag and drop, long press) 3668 // The event id (e.g., snapshot, drag and drop) 3719 // The event id (e.g., snapshot, drag and drop) 8233 /** Logs the drag and drop of files. 9147 // The drag session id (if the enter_trigger was DRAG)
|
/aosp12/packages/inputmethods/LatinIME/dictionaries/ |
H A D | lt_wordlist.combined.gz | 1dictionary=main:lt,locale=lt,description=Lietuvių,date=1393228136, ... |
H A D | sv_wordlist.combined.gz | 1dictionary=main:sv,locale=sv,description=Svenska,date=1414726264, ... |
H A D | pt_BR_wordlist.combined.gz | 1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ... |
H A D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
/aosp12/frameworks/opt/setupwizard/tools/docs/ |
H A D | android-22.txt | 29100 …method public static deprecated void drag(android.test.ActivityInstrumentationTestCase, float, flo… 29101 …method public static void drag(android.test.InstrumentationTestCase, float, float, float, float, i…
|