HomeSort by relevance Sort by last modified time
    Searched refs:velocityY (Results 26 - 50 of 81) sorted by null

12 3 4

  /external/chromium_org/third_party/WebKit/public/web/
WebInputEvent.h 437 float velocityY;
442 float velocityY;
  /external/replicaisland/src/com/replica/replicaisland/
LaunchProjectileComponent.java 207 public final void setVelocityY(float velocityY) {
208 mVelocityY = velocityY;
  /external/opencv/cv/src/
cvoptflowlk.cpp 66 // velocityY, // vertical components of optical flow ROI
89 float *velocityY, int velStep )
508 velocityY[j] = deltaY * Idelta;
521 velocityY[j] = (B1 + A1B2) * temp;
527 velocityY[j] = 0;
536 velocityY += velStep;
  /frameworks/support/v4/java/android/support/v4/view/
GestureDetectorCompat.java 373 final float velocityY = VelocityTrackerCompat.getYVelocity(
378 if ((Math.abs(velocityY) > mMinimumFlingVelocity)
380 handled = mListener.onFling(mCurrentDownEvent, ev, velocityX, velocityY);
  /external/chromium_org/content/browser/renderer_host/
web_input_event_aurax11.cc 171 webkit_event.data.flingStart.velocityY = event->y_offset();
ui_events_helper.cc 196 gesture_event.data.flingStart.velocityY = event.details().velocity_y();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
ScrollKeyboardView.java 204 final float velocityY) {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
PositionController.java 659 public boolean flingPage(int velocityX, int velocityY) {
676 if ((velocityY > 0 && (edges & IMAGE_AT_TOP_EDGE) != 0) ||
677 (velocityY < 0 && (edges & IMAGE_AT_BOTTOM_EDGE) != 0)) {
678 velocityY = 0;
681 if (velocityX == 0 && velocityY == 0) return false;
683 mPageScroller.fling(p.mCurrentX, b.mCurrentY, velocityX, velocityY,
711 // Moves the specified box out of screen. If velocityY is 0, a default
714 public int flingFilmY(int boxIndex, int velocityY) {
721 if (velocityY < 0 || (velocityY == 0 && b.mCurrentY <= 0))
    [all...]
PhotoView.java     [all...]
SlotView.java 659 MotionEvent e2, float velocityX, float velocityY) {
663 float velocity = WIDE ? velocityX : velocityY;
  /packages/apps/Gallery/src/com/android/camera/
GridViewSpecial.java 326 float velocityX, float velocityY) {
328 if (velocityY > MAX_FLING_VELOCITY) {
329 velocityY = MAX_FLING_VELOCITY;
330 } else if (velocityY < -MAX_FLING_VELOCITY) {
331 velocityY = -MAX_FLING_VELOCITY;
336 mScroller.fling(0, mScrollY, 0, -(int) velocityY, 0, 0, 0,
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
ContentViewGestureHandler.java 436 float velocityX, float velocityY) {
439 velocityY = 0;
446 (int) velocityX, (int) velocityY);
640 * @param velocityY Initial velocity of the fling (Y) measured in pixels per second.
642 void fling(long timeMs, int x, int y, int velocityX, int velocityY) {
655 mExtraParamBundle.putInt(VELOCITY_Y, velocityY);
    [all...]
ContentView.java 314 * @param velocityY Initial velocity of the fling (Y) measured in pixels per second.
317 public void fling(long timeMs, int x, int y, int velocityX, int velocityY) {
318 mContentViewCore.getContentViewGestureHandler().fling(timeMs, x, y, velocityX, velocityY);
  /external/chromium_org/content/renderer/gpu/
input_handler_proxy_unittest.cc 455 gesture_.data.flingStart.velocityY = fling_delta.y;
563 gesture_.data.flingStart.velocityY = fling_delta.y;
669 gesture_.data.flingStart.velocityY = fling_delta.y;
    [all...]
input_handler_proxy.cc 259 gesture_event.data.flingStart.velocityY),
269 gesture_event.data.flingStart.velocityY);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 384 float velocityX, float velocityY) {
387 final float absY = Math.abs(velocityY);
410 } else if (velocityY < -mSwipeThreshold && absX < absY && deltaY < -travelY) {
411 if (mDisambiguateSwipe && endingVelocityY > velocityY / 4) {
417 } else if (velocityY > mSwipeThreshold && absX < absY / 2 && deltaY > travelY) {
418 if (mDisambiguateSwipe && endingVelocityY < velocityY / 4) {
    [all...]
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java     [all...]
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 322 public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
324 mTranslateRunnable.start(velocityX, velocityY);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
FilmStripView.java 397 public void flingInsideZoomView (float velocityX, float velocityY);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 387 float velocityX, float velocityY) {
390 final float absY = Math.abs(velocityY);
413 } else if (velocityY < -mSwipeThreshold && absX < absY && deltaY < -travelY) {
414 if (mDisambiguateSwipe && endingVelocityY > velocityY / 4) {
420 } else if (velocityY > mSwipeThreshold && absX < absY / 2 && deltaY > travelY) {
421 if (mDisambiguateSwipe && endingVelocityY < velocityY / 4) {
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 451 float velocityY = (float) Math.sin(direction) * speed;
456 obstacle.setVelocity(velocityX, velocityY);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwContents.java 412 public void onFlingStartGesture(int velocityX, int velocityY) {
413 mScrollOffsetManager.onFlingStartGesture(velocityX, velocityY);
    [all...]
  /packages/apps/Browser/src/com/android/browser/view/
ScrollerView.java     [all...]
  /external/chromium_org/content/browser/renderer_host/input/
gesture_event_filter.cc 145 gesture_event.event.data.flingStart.velocityY != 0;
  /frameworks/base/core/java/android/widget/
NumberPicker.java     [all...]

Completed in 2564 milliseconds

12 3 4