HomeSort by relevance Sort by last modified time
    Searched defs:velocity (Results 26 - 50 of 113) sorted by null

12 3 4 5

  /external/libgdx/backends/gdx-backend-moe/src/com/badlogic/gdx/backends/iosmoe/objectal/
ALSource.java 459 @Selector("velocity")
461 public native ALVector velocity(); method in class:ALSource
  /frameworks/base/core/java/android/widget/
Scroller.java 249 * Returns the current velocity.
251 * @return The original velocity less the deceleration. Result may be
402 * depend on the initial velocity of the fling.
406 * @param velocityX Initial velocity of the fling (X) measured in pixels per
408 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
444 float velocity = (float) Math.hypot(velocityX, velocityY); local
446 mVelocity = velocity;
447 mDuration = getSplineFlingDuration(velocity);
452 float coeffX = velocity == 0 ? 1.0f : velocityX / velocity;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 326 * @param velocity The desired pixels/second speed at which the view should move
329 public void dismissChild(final View view, float velocity, boolean useAccelerateInterpolator) {
330 dismissChild(view, velocity, null /* endAction */, 0 /* delay */,
336 * @param velocity The desired pixels/second speed at which the view should move
342 public void dismissChild(final View animView, float velocity, final Runnable endAction,
350 boolean animateUpForMenu = velocity == 0 && (getTranslation(animView) == 0 || isDismissAll)
353 boolean animateLeftForRtl = velocity == 0 && (getTranslation(animView) == 0 || isDismissAll)
355 boolean animateLeft = velocity < 0
356 || (velocity == 0 && getTranslation(animView) < 0 && !isDismissAll);
366 if (velocity != 0)
580 float velocity = getVelocity(mVelocityTracker); field in class:SwipeHelper
    [all...]
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Scroller.java 198 * Returns the current velocity.
200 * @return The original velocity less the deceleration. Result may be
349 * depend on the initial velocity of the fling.
353 * @param velocityX Initial velocity of the fling (X) measured in pixels per
355 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
391 float velocity = (float) Math.hypot(velocityX, velocityY); local
393 mVelocity = velocity;
394 final double l = Math.log(START_TENSION * velocity / ALPHA);
400 float coeffX = velocity == 0 ? 1.0f : velocityX / velocity;
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 273 // Calculate how far along the velocity vector we should put the intermediate point on
275 float velocity = Math.abs(vel.length()); local
276 float vp = Math.min(1f, velocity / (config.getScaledMaximumFlingVelocity() / 2f));
318 * Creates an animation from the current drag view along its current velocity vector.
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherScroller.java 227 * Returns the current velocity.
229 * @return The original velocity less the deceleration. Result may be
386 * depend on the initial velocity of the fling.
390 * @param velocityX Initial velocity of the fling (X) measured in pixels per
392 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
428 float velocity = (float) Math.hypot(velocityX, velocityY); local
430 mVelocity = velocity;
431 mDuration = getSplineFlingDuration(velocity);
436 float coeffX = velocity == 0 ? 1.0f : velocityX / velocity;
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
MediaPickerPanel.java 476 final float velocity = maxAbsDelta / dt; local
477 return velocity > mFlingThresholdPx;
497 // component and has the required velocity (px/sec)
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
SwipeHelper.java 263 * @param velocity The desired pixels/second speed at which the view should
266 private void dismissChild(final SwipeableItemView view, float velocity) {
269 float newPos = determinePos(animView, velocity);
270 int duration = determineDuration(animView, newPos, velocity);
293 private static int determineDuration(View animView, float newPos, float velocity) {
295 if (velocity != 0) {
299 .abs(velocity)));
306 private float determinePos(View animView, float velocity) {
308 if (velocity < 0 || (velocity == 0 && animView.getTranslationX() < 0
406 float velocity = getVelocity(mVelocityTracker); local
    [all...]
  /external/dagger2/lib/
auto-value-1.0.jar 
  /external/sonivox/arm-wt-22k/host_src/
eas_types.h 241 EAS_U8 velocity; member in struct:s_ext_audio_event_tag
  /external/sonivox/arm-wt-22k/lib_src/
eas_synth.h 285 EAS_U8 velocity; /* 0 <= velocity <= 127 */ member in struct:s_synth_voice_tag
288 EAS_U8 nextVelocity; /* 0 <= velocity <= 127 */
  /frameworks/base/core/java/com/android/internal/widget/
RotarySelector.java 551 final int velocity = Math.max(mMinimumVelocity, rawVelocity); local
554 Math.abs(velocity / mDimpleSpacing));
558 velocity);
571 final int velocity = Math.min(-mMinimumVelocity, rawVelocity); local
574 Math.abs(velocity / mDimpleSpacing));
578 velocity);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewTouchHandler.java 153 /** Velocity tracker helpers */
242 // Initialize the velocity tracker
331 int velocity = (int) mVelocityTracker.getYVelocity(mActivePointerId); local
335 } else if (Math.abs(velocity) > mMinimumVelocity) {
340 mScroller.fling(mDownScrollP, mDownY, y, velocity, (int) minY, (int) maxY,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
seq_event.h 233 unsigned char velocity; /**< velocity */ member in struct:snd_seq_ev_note
234 unsigned char off_velocity; /**< note-off velocity; only for #SND_SEQ_EVENT_NOTE */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
xfixesproto.h 547 CARD32 velocity B32;
563 CARD32 velocity; member in struct:__anon40091
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
seq_event.h 233 unsigned char velocity; /**< velocity */ member in struct:snd_seq_ev_note
234 unsigned char off_velocity; /**< note-off velocity; only for #SND_SEQ_EVENT_NOTE */
  /external/guice/extensions/struts2/lib/
struts2-core-2.2.1.jar 
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 663 float velocity = WIDE ? velocityX : velocityY; local
664 mScroller.fling((int) -velocity, 0, scrollLimit);
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 354 // Break fling velocity if we impacted an edge.
366 final float velocity = VelocityTrackerCompat.getXVelocity(mVelocityTracker, local
368 if (Math.abs(velocity) > mFlingVelocity) { // TODO
370 mScroller.fling(0, 0, (int) velocity, 0,
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollController.java 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.
812 float velocity = mFlingScroller.getCurrVelocity(); local
813 float velocityX = velocity * curDx / hyp;
814 float velocityY = velocity * curDy / hyp;
    [all...]
  /bionic/libc/kernel/uapi/sound/
asequencer.h 135 unsigned char velocity; member in struct:snd_seq_ev_note
  /external/kernel-headers/original/uapi/sound/
asequencer.h 197 unsigned char velocity; member in struct:snd_seq_ev_note
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
btSoftBody.h 85 V_Point, ///Vertex normals are oriented toward velocity
86 V_TwoSided, ///Vertex normals are flipped to match velocity
87 V_TwoSidedLiftDrag, ///Vertex normals are flipped to match velocity and lift and drag forces are applied
89 F_TwoSided, ///Face normals are flipped to match velocity
90 F_TwoSidedLiftDrag, ///Face normals are flipped to match velocity and lift and drag forces are applied
196 btVector3 m_velocity; /* Velocity */
226 btVector3 m_v; // Velocity
435 btVector3 velocity(const btVector3& rpos) const function in struct:btSoftBody::Body
592 tVSolverArray m_vsequence; // Velocity solvers sequence
601 btScalar velmrg; // velocity margi
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
ParticleEmitter.java 394 particle.velocity = velocityValue.newLowValue();
396 if (!velocityValue.isRelative()) particle.velocityDiff -= particle.velocity;
538 float velocity = (particle.velocity + particle.velocityDiff * velocityValue.getScale(percent)) * delta; local
543 velocityX = velocity * MathUtils.cosDeg(angle);
544 velocityY = velocity * MathUtils.sinDeg(angle);
551 velocityX = velocity * particle.angleCos;
552 velocityY = velocity * particle.angleSin;
887 output.write("- Velocity - \n");
1004 protected float velocity, velocityDiff; field in class:ParticleEmitter.Particle
    [all...]
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 353 // Break fling velocity if we impacted an edge.
365 final float velocity = VelocityTrackerCompat.getYVelocity(mVelocityTracker, local
367 if (Math.abs(velocity) > mFlingVelocity) { // TODO
369 mScroller.fling(0, 0, 0, (int) velocity, 0, 0,
    [all...]

Completed in 1940 milliseconds

12 3 4 5