/aosp12/frameworks/native/libs/input/ |
H A D | VelocityTracker.cpp | 361 Movement& movement = mMovements[mIndex]; in addMovement() local 362 movement.eventTime = eventTime; in addMovement() 363 movement.idBits = idBits; in addMovement() 366 movement.positions[i] = positions[i]; in addMovement() 607 if (!movement.idBits.hasBit(id)) { in getEstimator() 890 movement.eventTime = eventTime; in addMovement() 891 movement.idBits = idBits; in addMovement() 1014 movement.eventTime = eventTime; in addMovement() 1015 movement.idBits = idBits; in addMovement() 1144 if (!movement.idBits.hasBit(id)) { in getEstimator() [all …]
|
/aosp12/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/ |
H A D | GestureUtils.java | 52 float movement = Float.MAX_VALUE; in distanceClosestPointerToPoint() local 56 if (movement > moveDelta) { in distanceClosestPointerToPoint() 57 movement = moveDelta; in distanceClosestPointerToPoint() 60 return movement; in distanceClosestPointerToPoint()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
H A D | BaseTooltipView.java | 143 void setMovementMethod(MovementMethod movement) { in setMovementMethod() argument 144 mTextView.setMovementMethod(movement); in setMovementMethod()
|
/aosp12/frameworks/base/core/java/android/inputmethodservice/ |
H A D | InputMethodService.java | 2802 MovementMethod movement = eet.getMovementMethod(); in doMovementKey() local 2804 if (movement != null && layout != null) { in doMovementKey() 2808 if (movement.onKeyDown(eet, eet.getText(), keyCode, event)) { in doMovementKey() 2813 if (movement.onKeyUp(eet, eet.getText(), keyCode, event)) { in doMovementKey() 2817 if (movement.onKeyOther(eet, eet.getText(), event)) { in doMovementKey() 2821 if (movement.onKeyDown(eet, eet.getText(), keyCode, down)) { in doMovementKey() 2823 movement.onKeyUp(eet, eet.getText(), keyCode, up); in doMovementKey() 2825 movement.onKeyDown(eet, eet.getText(), keyCode, down); in doMovementKey() 2826 movement.onKeyUp(eet, eet.getText(), keyCode, up); in doMovementKey()
|
/aosp12/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/statusbar/ |
H A D | NotificationMenuRowPlugin.java | 161 public boolean isTowardsMenu(float movement); in isTowardsMenu() argument
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
H A D | NotificationMenuRow.java | 441 public boolean isTowardsMenu(float movement) { in isTowardsMenu() argument 443 && ((isMenuOnLeft() && movement <= 0) in isTowardsMenu() 444 || (!isMenuOnLeft() && movement >= 0)); in isTowardsMenu()
|
/aosp12/hardware/interfaces/input/common/1.0/ |
H A D | types.hal | 153 * - For a mouse, reports the relative movement of the vertical scroll wheel. 162 * - For a mouse, reports the relative movement of the horizontal scroll wheel. 285 * vertical or horizontal. The movement of a rotating scroller is an example of this. 289 * Axis constant: The movement of x position of a motion event. 298 * Axis constant: The movement of y position of a motion event. 488 * A movement has happened outside of the normal bounds of the UI element. 489 * This does not provide a full gesture, but only the initial location of the movement/touch.
|
/aosp12/frameworks/base/core/java/android/view/ |
H A D | ViewRootImpl.java | 6708 int movement = 0; in process() local 6712 if (movement != 0) { in process() 6720 if (movement != 0) { in process() 6729 if (movement < 0) movement = -movement; in process() 6737 movement--; in process() 6744 while (movement > 0) { in process() 6747 movement--; in process() 6892 int movement = 0; in generate() local 6904 movement += dir; in generate() 6915 movement += dir; in generate() [all …]
|
/aosp12/frameworks/native/services/inputflinger/docs/ |
H A D | pointer_capture.md | 5 [Pointer Capture](https://developer.android.com/training/gestures/movement#pointer-capture) is a fe…
|
/aosp12/frameworks/base/packages/SystemUI/docs/ |
H A D | clock-plugins.md | 21 (clock movement) scheme and shape of the clock.
|
/aosp12/system/sepolicy/prebuilts/api/27.0/public/ |
H A D | installd.te | 11 # Allow movement of APK files between volumes
|
/aosp12/system/sepolicy/prebuilts/api/28.0/public/ |
H A D | installd.te | 11 # Allow movement of APK files between volumes
|
/aosp12/system/sepolicy/prebuilts/api/26.0/public/ |
H A D | installd.te | 11 # Allow movement of APK files between volumes
|
/aosp12/system/sepolicy/prebuilts/api/29.0/public/ |
H A D | installd.te | 11 # Allow movement of APK files between volumes
|
/aosp12/system/sepolicy/prebuilts/api/30.0/public/ |
H A D | installd.te | 11 # Allow movement of APK files between volumes
|
/aosp12/system/sepolicy/prebuilts/api/31.0/public/ |
H A D | installd.te | 11 # Allow movement of APK files between volumes
|
/aosp12/system/sepolicy/prebuilts/api/32.0/public/ |
H A D | installd.te | 11 # Allow movement of APK files between volumes
|
/aosp12/system/sepolicy/public/ |
H A D | installd.te | 11 # Allow movement of APK files between volumes
|
/aosp12/packages/modules/Wifi/service/proto/src/ |
H A D | metrics.proto | 2338 // If this is enabled, then network connections in high movement state will be skipped unless 2342 // Number of times connection is skipped in the high movement state 2346 // Number of times connection is initiated in the high movement state 2891 // High movement 2894 // Low movement
|
/aosp12/frameworks/base/core/java/android/widget/ |
H A D | TextView.java | 2592 public final void setMovementMethod(MovementMethod movement) { in setMovementMethod() argument 2593 if (mMovement != movement) { in setMovementMethod() 2594 mMovement = movement; in setMovementMethod() 2596 if (movement != null && mSpannable == null) { in setMovementMethod()
|
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-28.jar | META-INF/
META-INF/MANIFEST.MF
javax/
javax/net/
javax/ ... |
/aosp12/packages/inputmethods/LatinIME/dictionaries/ |
H A D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
H A D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |
H A D | en_wordlist.combined.gz | 1dictionary=main:en,locale=en,description=English,date=1414726273, ... |