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

1 2 3 4 5

  /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
  /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(
  /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
108 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplBase
110 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY); method
114 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplBase
116 ((Scroller) scroller).fling(startX, startY, velX, velY, minX, maxX, minY, maxY); method
201 public void fling(Object scroller, int startX, int startY, int velX, int velY, method in class:ScrollerCompat.ScrollerCompatImplGingerbread
203 ScrollerCompatGingerbread.fling(scroller, startX, startY, velX, velY,
208 public void fling(Object scroller, int startX, int startY, int velX, int velY method in class:ScrollerCompat.ScrollerCompatImplGingerbread
401 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:ScrollerCompat
429 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:ScrollerCompat
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
DeleteDropTarget.java 86 FlingAnimation fling = new FlingAnimation(d, vel, local
91 final int duration = fling.getDuration();
95 // called and we expect the animation to be a continuation of the fling, we have
96 // to account for the time that has elapsed since the fling finished. And since
125 dragLayer.animateView(d.dragView, fling, duration, tInterpolator, onAnimationEndRunnable,
  /frameworks/support/v4/tests/java/android/support/v4/widget/
ScrollerCompatTestBase.java 71 mScroller.fling(0, 0, 0, 1000,
87 mScroller.fling(0, 0, 0, 10000,
  /platform_testing/tests/jank/sysapp_wear/src/com/android/wearable/sysapp/janktests/
AppLauncherFlingJankTest.java 35 * Jank tests to fling through apps available in the launcher [1st page]
62 * page) before running the fling test on apps.
82 recyclerViewContents.fling(Direction.DOWN, SysAppTestHelper.FLING_SPEED);
83 recyclerViewContents.fling(Direction.UP, SysAppTestHelper.FLING_SPEED);
SettingsFlingJankTest.java 33 * Jank tests to fling through Settings app on clockwork device
58 // Prepare device to launch Settings app and scroll through bottom to start fling test
76 recyclerViewContents.fling(Direction.DOWN, SysAppTestHelper.FLING_SPEED);
77 recyclerViewContents.fling(Direction.UP, SysAppTestHelper.FLING_SPEED);
  /platform_testing/tests/jank/uibench/src/com/android/uibench/janktests/
UiBenchJankTestsHelper.java 79 * To perform the fling down and up on given content for flingCount number
88 content.fling(Direction.DOWN);
90 content.fling(Direction.UP);
  /platform_testing/tests/jank/uibench_wear/src/com/android/wearable/uibench/janktests/
UiBenchJankTests.java 134 // Test trivialListView fling
150 trivialListViewContents.fling(Direction.DOWN, mHelper.CW_FLING_RATE);
155 trivialListViewContents.fling(Direction.UP, mHelper.CW_FLING_RATE);
165 // Test trivialRecyclerListView fling
183 trivialRecyclerViewContents.fling(Direction.DOWN, mHelper.CW_FLING_RATE);
188 trivialRecyclerViewContents.fling(Direction.UP, mHelper.CW_FLING_RATE);
200 // Test Inflating List View fling
218 inflatingListViewContents.fling(Direction.DOWN, mHelper.CW_FLING_RATE);
223 inflatingListViewContents.fling(Direction.UP, mHelper.CW_FLING_RATE);
UiBenchRenderingJankTests.java 88 // Test Shadow Grid fling
100 shadowGridContents.fling(Direction.DOWN, 5000);
104 shadowGridContents.fling(Direction.UP, 5000);
UiBenchTextJankTests.java 111 // Test Layout Cache High Hitrate fling
125 layoutCacheHighHitrateContents.fling(Direction.DOWN, 5000);
130 layoutCacheHighHitrateContents.fling(Direction.UP, 5000);
144 // Test Layout Cache Low Hitrate fling
158 layoutCacheLowHitrateContents.fling(Direction.DOWN, 5000);
163 layoutCacheLowHitrateContents.fling(Direction.UP, 5000);
  /platform_testing/tests/jank/UbSystemUiJankTests/src/android/platform/systemui/tests/jank/
SettingsJankTests.java 91 while (list.fling(Direction.UP));
112 list.fling(Direction.DOWN);
114 list.fling(Direction.UP);
LauncherJankTests.java 141 allApps.fling(dir, FLING_SPEED);
142 allApps.fling(Direction.reverse(dir), FLING_SPEED);
184 workspace.fling(dir);
185 workspace.fling(Direction.reverse(dir));
211 allWidgets.fling(dir, FLING_SPEED);
212 allWidgets.fling(Direction.reverse(dir), FLING_SPEED);
  /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);
  /platform_testing/tests/jank/webview/src/com/android/webview/chromium/tests/jank/
WebViewFlingTest.java 90 // Fling to the top
91 while (container.fling(Direction.UP)) {
100 mDevice.findObject(By.res(RES_PACKAGE, "container")).fling(Direction.DOWN);
  /cts/tests/jank/src/android/jank/cts/ui/
CtsDeviceJankUi.java 58 getUiDevice().findObject(By.clazz(ListView.class)).fling(Direction.DOWN);
  /cts/tests/tests/view/src/android/view/cts/
FrameMetricsListenerTest.java 96 scrollView.fling(-100);
121 scrollView.fling(100);
172 scrollView.fling(-100);
228 scrollView.fling(-100);
  /packages/apps/Camera2/src/com/android/camera/filmstrip/
FilmstripController.java 102 public void fling(float velocity); method in interface:FilmstripController
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
EdgeSwipeDetector.java 65 mTable.fling(mTable.getFocus());
KeyboardInterpreter.java 87 mTable.fling(mTable.getFocus());
  /platform_testing/libraries/recents-app-helper/src/android/platform/test/helpers/
RecentsHelperImpl.java 95 recentsScroller.fling(dir);
  /platform_testing/tests/jank/sysapp/src/com/android/sysapp/janktests/
ContactsJankTests.java 47 * open contact list and fling
118 contactList.fling(Direction.DOWN);
120 contactList.fling(Direction.UP);
GMailJankTests.java 173 container.fling(Direction.RIGHT);
190 container.fling(Direction.DOWN);
192 container.fling(Direction.UP);
  /frameworks/support/design/src/android/support/design/widget/
HeaderBehavior.java 173 fling(parent, child, -getScrollRangeForDragFling(child), 0, yvel); method
229 final boolean fling(CoordinatorLayout coordinatorLayout, V layout, int minOffset, method in class:HeaderBehavior
240 mScroller.fling(
257 * Called when a fling has finished, or the fling was initiated but there wasn't enough
  /frameworks/base/core/java/android/widget/
OverScroller.java 68 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
109 * @param flywheel If true, successive fling motions will keep on increasing scroll speed.
205 * Returns where the scroll will end. Valid only for "fling" scrolls.
214 * Returns where the scroll will end. Valid only for "fling" scrolls.
399 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
401 fling(startX, startY, velocityX, velocityY, minX, maxX, minY, maxY, 0, 0); method
405 * Start scrolling based on a fling gesture. The distance traveled will
406 * depend on the initial velocity of the fling.
410 * @param velocityX Initial velocity of the fling (X) measured in pixels per
412 * @param velocityY Initial velocity of the fling (Y) measured in pixels pe
431 public void fling(int startX, int startY, int velocityX, int velocityY, method in class:OverScroller
744 void fling(int start, int velocity, int min, int max, int over) { method in class:OverScroller.SplineOverScroller
833 fling(start, velocity, positive ? min : start, positive ? start : max, mOver); method
    [all...]

Completed in 750 milliseconds

1 2 3 4 5