Home
last modified time | relevance | path

Searched refs:fling (Results 1 – 25 of 38) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/widget/
DHorizontalScrollViewFunctionalTest.java74 mActivityRule.runOnUiThread(() -> mHorizontalScrollView.fling(-10000)); in testScrollAfterFlingLeft()
88 mActivityRule.runOnUiThread(() -> mHorizontalScrollView.fling(10000)); in testScrollAfterFlingRight()
107 mMyHorizontalScrollView.fling(100); in testSetVelocity()
DScrollViewFunctionalTest.java74 mActivityRule.runOnUiThread(() -> mScrollView.fling(-10000)); in testScrollAfterFlingTop()
88 mActivityRule.runOnUiThread(() -> mScrollView.fling(10000)); in testScrollAfterFlingBottom()
107 mMyScrollView.fling(100); in testSetVelocity()
DAbsListViewFunctionalTest.java92 mMyListView.fling(100); in testLsitViewSetVelocity()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/domain/interactor/
DSwipeToDismissInteractorTest.kt60 { fling: FlingInfo? -> fling?.expand }, in <lambda>() method
/frameworks/base/core/java/android/widget/
DOverScroller.java392 public void fling(int startX, int startY, int velocityX, int velocityY, in fling() method in OverScroller
394 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0); in fling()
424 public void fling(int startX, int startY, int velocityX, int velocityY, in fling() method in OverScroller
438 mScrollerX.fling(startX, velocityX, minX, maxX, overX); in fling()
439 mScrollerY.fling(startY, velocityY, minY, maxY, overY); in fling()
747 void fling(int start, int velocity, int min, int max, int over) { in fling() method in OverScroller.SplineOverScroller
836 fling(start, velocity, positive ? min : start, positive ? start : max, mOver); in startAfterEdge()
DScrollView.java1892 public void fling(int velocityY) { in fling() method in ScrollView
1897 mScroller.fling(mScrollX, mScrollY, 0, velocityY, 0, 0, 0, in fling()
1918 fling(velocityY); in flingWithNestedDispatch()
1924 fling(velocityY); in flingWithNestedDispatch()
1930 fling(velocityY); in flingWithNestedDispatch()
2199 fling((int) velocity); in startDifferentialMotionFling()
DScroller.java426 public void fling(int startX, int startY, int velocityX, int velocityY, in fling() method in Scroller
DHorizontalScrollView.java804 fling(-initialVelocity); in onTouchEvent()
1793 public void fling(int velocityX) { in fling() method in HorizontalScrollView
1817 mScroller.fling(mScrollX, mScrollY, velocityX, 0, 0, in fling()
DNumberPicker.java982 fling(initialVelocity); in onTouchEvent()
1939 private void fling(int velocityY) { in fling() method in NumberPicker
1943 mFlingScroller.fling(0, 0, 0, velocityY, 0, 0, 0, Integer.MAX_VALUE); in fling()
1945 mFlingScroller.fling(0, Integer.MAX_VALUE, 0, velocityY, 0, 0, 0, Integer.MAX_VALUE); in fling()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DObservableScrollView.java132 public void fling(int velocityY) { in fling() method in ObservableScrollView
134 super.fling(velocityY); in fling()
/frameworks/base/core/java/android/widget/flags/
Ddifferential_motion_fling_flags.aconfig7 description: "Enables differential motion fling in platform widgets"
/frameworks/base/libs/WindowManager/Shell/tests/unittest/src/com/android/wm/shell/shared/animation/
DPhysicsAnimatorTest.kt136 .fling(DynamicAnimation.TRANSLATION_X, 1000f /* startVelocity */, flingConfig) in <lambda>()
137 .fling(DynamicAnimation.TRANSLATION_Y, 500f, flingConfig) in <lambda>()
394 .fling(DynamicAnimation.TRANSLATION_X, in <lambda>()
410 .fling( in <lambda>()
434 .fling(DynamicAnimation.TRANSLATION_Y, 10f, flingConfig) in <lambda>()
/frameworks/base/libs/WindowManager/Shell/shared/src/com/android/wm/shell/shared/animation/
DPhysicsAnimator.kt252 fun fling( in fling() method
274 fun fling( in fling() method
279 return fling(property, startVelocity, config.friction, config.min, config.max) in fling()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
DQSScrollLayout.java177 public void onDragEnd(float velocity, boolean fling) { in onDragEnd() argument
/frameworks/base/tests/UiBench/src/com/android/test/uibench/
DNotificationShadeActivity.java69 mScroller.fling(0, mFullHeight, 0, (int) vY, 0, 0, 0, getHeight());
/frameworks/native/libs/input/
Dinput_flags.aconfig121 description: "Enable fling scrolling to be stopped by putting a finger on the touchpad again"
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/touch/
DSwipeDetector.java177 void onDragEnd(float velocity, boolean fling); in onDragEnd() argument
/frameworks/base/services/accessibility/
Daccessibility.aconfig126 description: "When true, adds a fling gesture animation for fullscreen magnification"
/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
DNotificationPanelViewController.java629 private final Runnable mFlingCollapseRunnable = () -> fling(0, false /* expand */,
2057 fling(0, false /* expand */, speedUpFactor, false /* expandBecauseOfFalsing */); in collapse()
2118 private void fling(float vel) { in fling() method in NotificationPanelViewController
2123 fling(vel, true, 1.0f /* collapseSpeedUpFactor */, false); in fling()
2379 fling(velocity > 1f ? 1000f * velocity : 0 /* expand */); in finishInputFocusTransfer()
2894 fling(0 /* expand */); in expand()
3880 fling(vel, expand, isFalseTouch(x, y, interactionType));
3927 private void fling(float vel, boolean expand, boolean expandBecauseOfFalsing) {
3928 fling(vel, expand, 1.0f /* collapseSpeedUpFactor */, expandBecauseOfFalsing);
3931 private void fling(float vel, boolean expand, float collapseSpeedUpFactor,
[all …]
/frameworks/native/services/inputflinger/reader/mapper/
DTouchpadInputMapper.cpp154 if (gesture.details.fling.fling_state == GESTURES_FLING_START) { in processGesture()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/gesture/
DGesturePointerEventListener.kt442 mOverscroller.fling( in <lambda>()
/frameworks/base/services/core/java/com/android/server/wm/
DSystemGesturesPointerEventListener.java443 mOverscroller.fling(0, 0, (int)velocityX, (int)velocityY, in onFling()
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/magnification/
DFullScreenMagnificationGestureHandlerTest.java1064 verify(mMockScroller).fling( in testSingleFingerScrollAfterMagnified_startsFling()
1147 verify(mMockScroller).fling( in testTwoFingerPanDiagonalAfterMagnified_startsFlingXY()
1194 verify(mMockScroller).fling( in testTwoFingerPanRightAfterMagnified_startsFlingXOnly()
/frameworks/native/services/inputflinger/reader/mapper/gestures/
DGestureConverter.cpp363 switch (gesture.details.fling.fling_state) { in handleFling()
/frameworks/base/core/java/com/android/internal/widget/
DActionBarOverlayLayout.java743 mFlingEstimator.fling(0, 0, 0, (int) velocityY, 0, 0, Integer.MIN_VALUE, Integer.MAX_VALUE);

12