HomeSort by relevance Sort by last modified time
    Searched refs:fling (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /frameworks/support/v4/java/android/support/v4/widget/
ScrollerCompat.java 29 * current device's preferred scroll physics and fling behavior. It offers a subset of
47 void fling(Object scroller, int startX, int startY, int velX, int velY, method in interface:ScrollerCompat.ScrollerCompatImpl
49 void fling(Object scroller, int startX, int startY, int velX, int velY, method in interface:ScrollerCompat.ScrollerCompatImpl
106 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplBase
108 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY); method
112 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplBase
114 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY); method
193 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplGingerbread
195 ScrollerCompatGingerbread.fling(scroller, startX, startY, velX, velY,
200 public void fling(Object scroller, int startX, int startY, int velX, int velY method in class:ScrollerCompat.ScrollerCompatImplGingerbread
391 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:ScrollerCompat
419 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:ScrollerCompat
    [all...]
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ContentViewScrollingTest.java 23 * Tests that we can scroll and fling a ContentView running inside ContentShell.
122 private void fling(final int vx, final int vy) throws Throwable { method in class:ContentViewScrollingTest
155 // Vertical fling to lower-left.
156 fling(0, -1000);
159 // Horizontal fling to lower-right.
160 fling(-1000, 0);
163 // Vertical fling to upper-right.
164 fling(0, 1000);
167 // Horizontal fling to top-left.
168 fling(1000, 0)
    [all...]
  /frameworks/support/v4/gingerbread/android/support/v4/widget/
ScrollerCompatGingerbread.java 55 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); method
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, method
  /frameworks/support/v4/tests/java/android/support/v4/widget/
ScrollerCompatTestBase.java 58 mScroller.fling(0, 0, 0, 1000,
73 mScroller.fling(0, 0, 0, 10000,
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ScrollerHelper.java 74 public void fling(int velocity, int min, int max) { method in class:ScrollerHelper
76 mScroller.fling(
FlingScroller.java 21 // android.widget.Scroller. It does fling only, not scroll.
32 // The fling duration (in milliseconds) when velocity is 1 pixel/second
76 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:FlingScroller
  /packages/apps/Camera2/src/com/android/camera/filmstrip/
FilmstripController.java 107 public void fling(float velocity); method in interface:FilmstripController
  /frameworks/webview/chromium/tests/UbWebViewJankTests/src/com/android/webview/chromium/tests/jank/
WebViewFlingTest.java 89 // Fling to the top
90 while (container.fling(Direction.UP)) {
98 mDevice.findObject(By.res(RES_PACKAGE, "container")).fling(Direction.DOWN);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ObservableScrollView.java 132 public void fling(int velocityY) { method in class:ObservableScrollView
134 super.fling(velocityY);
PanelView.java 342 fling(vel, expand); method
494 * @return whether a fling should expands the panel; contracts otherwise
511 protected void fling(float vel, boolean expand) { method in class:PanelView
594 fling(mUpdateFlingVelocity, true); method
711 fling(0, false /* expand */);
719 fling(0, false /* expand */);
728 fling(0, true /* expand */);
    [all...]
KeyguardAffordanceHelper.java 293 fling(vel, snapBack || forceSnapBack); method
305 private void fling(float vel, final boolean snapBack) { method in class:KeyguardAffordanceHelper
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
EdgeSwipeDetector.java 65 mTable.fling(mTable.getFocus());
KeyboardInterpreter.java 87 mTable.fling(mTable.getFocus());
PhotoTouchListener.java 92 log("fling " + dX + ", " + dY);
118 mTable.fling(target, x1 - x0, y1 - y0, (int) (1000f * n / 60f), false);
  /frameworks/base/core/java/android/widget/
OverScroller.java 69 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
110 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
208 * Returns where the scroll will end. Valid only for "fling" scrolls.
217 * Returns where the scroll will end. Valid only for "fling" scrolls.
402 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
404 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0); method
408 * Start scrolling based on a fling gesture. The distance traveled will
409 * depend on the initial velocity of the fling.
413 * @param velocityX Initial velocity of the fling (X) measured in pixels per
415 * @param velocityY Initial velocity of the fling (Y) measured in pixels pe
434 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
747 void fling(int start, int velocity, int min, int max, int over) { method in class:OverScroller.SplineOverScroller
834 fling(start, velocity, positive ? min : start, positive ? start : max, mOver); method
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
OverScrollerSGV.java 73 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
110 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
204 * Returns where the scroll will end. Valid only for "fling" scrolls.
213 * Returns where the scroll will end. Valid only for "fling" scrolls.
405 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScrollerSGV
407 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0); method
411 * Start scrolling based on a fling gesture. The distance traveled will
412 * depend on the initial velocity of the fling.
416 * @param velocityX Initial velocity of the fling (X) measured in pixels per
418 * @param velocityY Initial velocity of the fling (Y) measured in pixels pe
437 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScrollerSGV
750 void fling(int start, int velocity, int min, int max, int over) { method in class:OverScrollerSGV.SplineOverScroller
838 fling(start, velocity, positive ? min : start, positive ? start : max, mOver); method
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
OverScroller.java 69 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
108 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
202 * Returns where the scroll will end. Valid only for "fling" scrolls.
211 * Returns where the scroll will end. Valid only for "fling" scrolls.
403 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
405 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0); method
409 * Start scrolling based on a fling gesture. The distance traveled will
410 * depend on the initial velocity of the fling.
414 * @param velocityX Initial velocity of the fling (X) measured in pixels per
416 * @param velocityY Initial velocity of the fling (Y) measured in pixels pe
435 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
751 void fling(int start, int velocity, int min, int max, int over) { method in class:OverScroller.SplineOverScroller
838 fling(start, velocity, positive ? min : start, positive ? start : max, mOver); method
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollerTest.java 68 mScroller.fling(0, 0, 10, 4000, 0, 100, 0, 0);
208 mScroller.fling(0, 0, - 3000, 4000, Integer.MIN_VALUE, Integer.MAX_VALUE,
256 // the fling mode has a deceleration effect
286 mScroller.fling(0, 0, - 3000, 4000,
HorizontalScrollViewTest.java 520 // fling towards right
523 mScrollView.fling(velocityX);
529 // fling towards left
532 mScrollView.fling(-velocityX);
ScrollViewTest.java 549 // fling towards bottom
552 mScrollView.fling(2000);
558 // fling towards top
561 mScrollView.fling(-2000);
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 57 * indicate to users that they've reached the content edges after a pan or fling gesture. This
80 * Initial fling velocity for pan operations, in screen widths (or heights) per second.
804 private void fling(int velocityX, int velocityY) { method in class:InteractiveLineGraphView
997 fling((int) (-PAN_VELOCITY_FACTOR * getWidth()), 0); method
1004 fling((int) (PAN_VELOCITY_FACTOR * getWidth()), 0); method
    [all...]
  /external/chromium_org/content/renderer/input/
input_handler_proxy_unittest.cc 47 WebGestureEvent fling; local
48 fling.type = WebInputEvent::GestureFlingStart;
49 fling.sourceDevice = source_device;
50 fling.timeStampSeconds = (timestamp - base::TimeTicks()).InSecondsF();
51 fling.data.flingStart.velocityX = velocity.x;
52 fling.data.flingStart.velocityY = velocity.y;
53 fling.x = point.x;
54 fling.y = point.y;
55 fling.globalX = global_point.x;
56 fling.globalY = global_point.y
    [all...]
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
RecyclerViewLayoutTest.java 141 final float fling = vc.getScaledMinimumFlingVelocity() local
146 mRecyclerView.fling(0, Math.round(fling));
174 final float fling = vc.getScaledMinimumFlingVelocity() local
179 mRecyclerView.fling(0, Math.round(fling));
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 597 // we separate Scrollers for scroll animation and fling animation; this is because we want a
598 // flywheel feature for fling animation, ScrollAdapterView inserts scroll animation between
599 // fling animations, the fling animation will mistakenly continue the old velocity of scroll
600 // animation: that's wrong, we want fling animation pickup the old velocity of last fling.
606 /** using fling scroller */
629 /** fling operation mode */
762 final public boolean fling(int velocity_x, int velocity_y){ method in class:ScrollController
770 mFlingScroller.fling((int)(horizontal.mScrollCenter)
    [all...]
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwScrollOffsetManager.java 255 // Called whenever some other touch interaction requires the fling gesture to be canceled.
257 // TODO(mkosiba): Support speeding up a fling by flinging again.
262 // Called when a fling gesture is not handled by the renderer.
263 // We explicitly ask the renderer not to handle fling gestures targeted at the root
269 // Starts the fling animation. Called both as a response to a fling gesture and as via the
277 mScroller.fling(scrollX, scrollY, velocityX, velocityY,

Completed in 2006 milliseconds

1 2 3 4