HomeSort by relevance Sort by last modified time
    Searched refs:vel (Results 1 - 20 of 20) sorted by null

  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 267 DragObject d, PointF vel, ViewConfiguration config) {
275 float velocity = Math.abs(vel.length());
278 int offsetX = (int) (offsetY / (vel.y / vel.x));
332 public FlingAlongVectorAnimatorUpdateListener(DragLayer dragLayer, PointF vel, Rect from,
335 mVelocity = vel;
370 DragObject d, PointF vel, final long startTime, final int duration,
375 return new FlingAlongVectorAnimatorUpdateListener(dragLayer, vel, from, startTime,
379 public void onFlingToDelete(final DragObject d, int x, int y, PointF vel) {
424 updateCb = createFlingToTrashAnimatorListener(dragLayer, d, vel, config)
    [all...]
DragController.java 631 PointF vel = new PointF(mVelocityTracker.getXVelocity(),
634 float theta = (float) Math.acos(((vel.x * upVec.x) + (vel.y * upVec.y)) /
635 (vel.length() * upVec.length()));
637 return vel;
643 private void dropOnFlingToDeleteTarget(float x, float y, PointF vel) {
664 vel);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
seqmid.h 368 * \param vel velocity
371 #define snd_seq_ev_set_note(ev, ch, key, vel, dur) \
376 (ev)->data.note.velocity = (vel),\
384 * \param vel velocity
386 #define snd_seq_ev_set_noteon(ev, ch, key, vel) \
391 (ev)->data.note.velocity = (vel))
398 * \param vel velocity
400 #define snd_seq_ev_set_noteoff(ev, ch, key, vel) \
405 (ev)->data.note.velocity = (vel))
412 * \param vel velocit
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
seqmid.h 368 * \param vel velocity
371 #define snd_seq_ev_set_note(ev, ch, key, vel, dur) \
376 (ev)->data.note.velocity = (vel),\
384 * \param vel velocity
386 #define snd_seq_ev_set_noteon(ev, ch, key, vel) \
391 (ev)->data.note.velocity = (vel))
398 * \param vel velocity
400 #define snd_seq_ev_set_noteoff(ev, ch, key, vel) \
405 (ev)->data.note.velocity = (vel))
412 * \param vel velocit
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardAffordanceHelper.java 284 float vel = getCurrentVelocity(); local
290 boolean velIsInWrongDirection = vel * mTranslation < 0;
291 snapBack |= Math.abs(vel) > mMinFlingVelocity && velIsInWrongDirection;
292 vel = snapBack ^ velIsInWrongDirection ? 0 : vel;
293 fling(vel, snapBack || forceSnapBack);
305 private void fling(float vel, final boolean snapBack) {
310 mFlingAnimationUtils.apply(animator, mTranslation, target, vel);
319 startFinishingCircleAnimation(vel * 0.375f, mAnimationEndRunnable);
PanelView.java 329 float vel = 0f; local
333 vel = mVelocityTracker.getYVelocity();
337 boolean expand = flingExpands(vel, vectorVel);
342 fling(vel, expand);
345 mUpdateFlingVelocity = vel;
492 * @param vel the current vertical velocity of the motion
496 protected boolean flingExpands(float vel, float vectorVel) {
503 return vel > 0;
511 protected void fling(float vel, boolean expand) {
533 vel = 0
    [all...]
NotificationPanelView.java 415 flingSettings(0 /* vel */, false);
426 public void fling(float vel, boolean expand) {
429 gr.tag("fling " + ((vel > 0) ? "open" : "closed"), "notifications,v=" + vel);
431 super.fling(vel, expand);
552 float vel = getCurrentVelocity(); local
553 flingSettings(vel, flingExpandsQs(vel));
556 private boolean flingExpandsQs(float vel) {
560 if (Math.abs(vel) < mFlingAnimationUtils.getMinVelocityPxPerSecond())
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthListView.java 118 float vel = mTracker.getYVelocity (); local
119 if (Math.abs(vel) > MIN_VELOCITY_FOR_FLING) {
120 doFling(vel);
  /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/Shapes/resources/
shapes.js 11 Proin orci libero, accumsan non dignissim at, sodales in sapien. Curabitur dui nibh, venenatis vel tempus vel, accumsan nec velit.\
17 Curabitur rutrum, lorem ac malesuada pellentesque, sapien risus consequat massa, eget pellentesque nunc nulla vel sem.";
  /packages/apps/Launcher3/src/com/android/launcher3/
DeleteDropTarget.java 378 DragObject d, PointF vel, ViewConfiguration config) {
389 float velocity = Math.abs(vel.length());
392 int offsetX = (int) (offsetY / (vel.y / vel.x));
446 public FlingAlongVectorAnimatorUpdateListener(DragLayer dragLayer, PointF vel, Rect from,
449 mVelocity = vel;
484 DragObject d, PointF vel, final long startTime, final int duration,
489 return new FlingAlongVectorAnimatorUpdateListener(dragLayer, vel, from, startTime,
493 public void onFlingToDelete(final DragObject d, int x, int y, PointF vel) {
538 updateCb = createFlingToTrashAnimatorListener(dragLayer, d, vel, config)
    [all...]
DragController.java 628 PointF vel = new PointF(mVelocityTracker.getXVelocity(),
631 float theta = (float) Math.acos(((vel.x * upVec.x) + (vel.y * upVec.y)) /
632 (vel.length() * upVec.length()));
634 return vel;
640 private void dropOnFlingToDeleteTarget(float x, float y, PointF vel) {
661 vel);
PagedView.java 2584 PointF vel = new PointF(mVelocityTracker.getXVelocity(), local
    [all...]
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
FlockingScene.cpp 157 Vector2D* vel = &(b->mVelocity); local
166 transformMatrix->rotate(atan2(vel->mY, vel->mX) + M_PI, 0, 0, 1);
  /external/chromium_org/v8/test/mjsunit/
string-indexof-2.js 47 + "consequatur? quis autem vel eum iure reprehenderit, qui in ea "
48 + "voluptate velit esse, quam nihil molestiae consequatur, vel illum, "
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 1487 float vel = (dist\/dur) * units; local
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 2393 PointF vel = new PointF(mVelocityTracker.getXVelocity(), local
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 1541 float vel = (dist\/dur) * units; \/\/ pixels\/frame. local
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
RecyclerView.java 2765 final int vel = (int) scroller.getCurrVelocity(); local
    [all...]
  /frameworks/base/core/java/android/widget/
AbsListView.java     [all...]
  /prebuilts/sdk/current/support/v7/recyclerview/libs/
android-support-v7-recyclerview.jar 

Completed in 681 milliseconds