Searched defs:fling (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DNotificationPanelView.java62 public void fling(float vel, boolean always) { method in class:NotificationPanelView
66 "fling " + ((vel > 0) ? "open" : "closed"),
69 super.fling(vel, always);
H A DSettingsPanelView.java103 public void fling(float vel, boolean always) { method in class:SettingsPanelView
107 "fling " + ((vel > 0) ? "open" : "closed"),
110 super.fling(vel, always);
H A DPanelView.java499 fling(vel, true);
508 public void fling(float vel, boolean always) { method in class:PanelView
509 if (DEBUG) logf("fling: vel=%.3f, this=%s", vel, this);
663 fling(-mSelfCollapseVelocityPx, /*always=*/ true);
671 fling(mSelfExpandVelocityPx, /*always=*/ true);
/frameworks/support/v4/gingerbread/android/support/v4/widget/
H A DScrollerCompatGingerbread.java55 public static void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompatGingerbread
57 ((OverScroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
60 public static void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompatGingerbread
62 ((OverScroller) scroller).fling(startX, startY, velX, velY,
/frameworks/support/v4/java/android/support/v4/widget/
H A DScrollerCompat.java28 * current device's preferred scroll physics and fling behavior. It offers a subset of
43 void fling(Object scroller, int startX, int startY, int velX, int velY, method in interface:ScrollerCompat.ScrollerCompatImpl
45 void fling(Object scroller, int startX, int startY, int velX, int velY, method in interface:ScrollerCompat.ScrollerCompatImpl
99 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplBase
101 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
105 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplBase
107 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY);
186 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplGingerbread
188 ScrollerCompatGingerbread.fling(scroller, startX, startY, velX, velY,
193 public void fling(Objec method in class:ScrollerCompat.ScrollerCompatImplGingerbread
380 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:ScrollerCompat
408 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:ScrollerCompat
[all...]
/frameworks/base/core/java/android/widget/
H A DScroller.java31 * animation—for example, in response to a fling gesture. Scrollers track
52 * whether the scroller is finished. If it isn't, it means that a fling or
284 * Returns where the scroll will end. Valid only for "fling" scrolls.
293 * Returns where the scroll will end. Valid only for "fling" scrolls.
413 * Start scrolling based on a fling gesture. The distance travelled will
414 * depend on the initial velocity of the fling.
418 * @param velocityX Initial velocity of the fling (X) measured in pixels per
420 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
431 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:Scroller
433 // Continue a scroll or fling i
[all...]
H A DHorizontalScrollView.java559 * If being flinged and user touches, stop the fling. isFinished
639 fling(-initialVelocity);
1547 public void fling(int velocityX) { method in class:HorizontalScrollView
1552 mScroller.fling(mScrollX, mScrollY, velocityX, 0, 0,
H A DOverScroller.java69 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
106 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
200 * Returns where the scroll will end. Valid only for "fling" scrolls.
209 * Returns where the scroll will end. Valid only for "fling" scrolls.
401 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
403 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0);
407 * Start scrolling based on a fling gesture. The distance traveled will
408 * depend on the initial velocity of the fling.
412 * @param velocityX Initial velocity of the fling (X) measured in pixels per
414 * @param velocityY Initial velocity of the fling (
433 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
746 void fling(int start, int velocity, int min, int max, int over) { method in class:OverScroller.SplineOverScroller
[all...]
H A DScrollView.java591 * If being flinged and user touches, stop the fling. isFinished
675 fling(-initialVelocity);
1536 public void fling(int velocityY) { method in class:ScrollView
1541 mScroller.fling(mScrollX, mScrollY, 0, velocityY, 0, 0, 0,
1545 mFlingStrictSpan = StrictMode.enterCriticalSpan("ScrollView-fling");
H A DNumberPicker.java108 * The coefficient by which to adjust (divide) the max fling velocity.
508 * The user had previously been scrolling using touch and performed a fling.
712 // create the fling and adjust scrollers
889 fling(initialVelocity);
1697 private void fling(int velocityY) { method in class:NumberPicker
1701 mFlingScroller.fling(0, 0, 0, velocityY, 0, 0, 0, Integer.MAX_VALUE);
1703 mFlingScroller.fling(0, Integer.MAX_VALUE, 0, velocityY, 0, 0, 0, Integer.MAX_VALUE);

Completed in 677 milliseconds