HomeSort by relevance Sort by last modified time
    Searched refs:velocity (Results 51 - 75 of 153) sorted by null

1 23 4 5 6 7

  /external/sonivox/arm-fm-22k/host_src/
eas_types.h 237 EAS_U8 velocity; member in struct:s_ext_audio_event_tag
  /external/sonivox/arm-hybrid-22k/host_src/
eas_types.h 237 EAS_U8 velocity; member in struct:s_ext_audio_event_tag
  /external/sonivox/arm-wt-22k/host_src/
eas_types.h 241 EAS_U8 velocity; member in struct:s_ext_audio_event_tag
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackViewTouchHandler.java 81 /** Velocity tracker helpers */
160 // Initialize the velocity tracker
168 // Initialize the velocity tracker if necessary
194 // Reset the drag state and the velocity tracker
230 // Update the velocity tracker
244 // Initialize the velocity tracker
303 int velocity = (int) mVelocityTracker.getYVelocity(mActivePointerId); local
304 if (mIsScrolling && (Math.abs(velocity) > mMinimumVelocity)) {
305 float overscrollRangePct = Math.abs((float) velocity / mMaximumVelocity);
311 0, velocity,
    [all...]
  /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/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/sonivox/arm-fm-22k/lib_src/
eas_voicemgt.c 182 pVoice->velocity = pVoice->nextVelocity = DEFAULT_VELOCITY;
    [all...]
eas_ota.c 507 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, OTA_CHANNEL, pData->note, pData->velocity);
540 pData->velocity = temp ? (EAS_U8) (temp * OTA_VEL_MUL + OTA_VEL_OFS) : 0;
864 pData->velocity = OTA_VEL_DEFAULT;
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_voicemgt.c 182 pVoice->velocity = pVoice->nextVelocity = DEFAULT_VELOCITY;
    [all...]
eas_ota.c 507 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, OTA_CHANNEL, pData->note, pData->velocity);
540 pData->velocity = temp ? (EAS_U8) (temp * OTA_VEL_MUL + OTA_VEL_OFS) : 0;
864 pData->velocity = OTA_VEL_DEFAULT;
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_voicemgt.c 182 pVoice->velocity = pVoice->nextVelocity = DEFAULT_VELOCITY;
    [all...]
eas_ota.c 507 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, OTA_CHANNEL, pData->note, pData->velocity);
540 pData->velocity = temp ? (EAS_U8) (temp * OTA_VEL_MUL + OTA_VEL_OFS) : 0;
864 pData->velocity = OTA_VEL_DEFAULT;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/extensions/
Xfixes.h 264 int x2, int y2, int directions, int velocity,
288 int velocity; member in struct:__anon32128
  /external/sonivox/jet_tools/JetCreator/
midifile.py 395 def __init__ (self, ticks, seq, channel, note, velocity):
402 self.velocity = velocity
408 velocity = ReadByte(stream)
412 return NoteOffEvent(ticks, seq, channel, note, velocity)
414 # special case for note-off using zero velocity
415 if self.velocity > 0:
416 self.WriteRunningStatus(stream, track, filters, NOTE_ON, self.note, self.velocity)
418 self.WriteRunningStatus(stream, track, filters, NOTE_ON, self.note, self.velocity)
422 return '%s: ch=%d n=%d v=%d' % (self.name, self.channel, self.note, self.velocity)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
MultiShrinkScroller.java 60 * order to track velocity, modify EdgeEffect color & perform the originally specified animations.
534 final float velocity = getCurrentVelocity(); local
535 if (velocity > mMinimumVelocity || velocity < -mMinimumVelocity) {
536 fling(-velocity);
    [all...]
  /frameworks/base/core/java/android/widget/
StackView.java     [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleEmitter.java 498 * Check if particles spawned should face their velocity.
500 * @return True if particles spawned should face their velocity.
510 * their velocity (or direction to which they are moving towards).
514 * @param followVelocity True if particles spawned should face their velocity.
780 * @param initialVelocity Set the initial velocity a particle is spawned with,
781 * the initial velocity given in the parameter will be varied according
782 * to the velocity variation set in {@link ParticleEmitter#setVelocityVariation(float) }.
783 * A particle will move toward its velocity unless it is effected by the
802 * @return the initial velocity variation factor
810 * @param variation Set the variation by which the initial velocity
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
ResolverDrawerLayout.java 408 private void smoothScrollTo(int yOffset, float velocity) {
423 velocity = Math.abs(velocity);
424 if (velocity > 0) {
425 duration = 4 * Math.round(1000 * Math.abs(distance / velocity));
ViewPager.java 519 boolean setCurrentItemInternal(int item, boolean smoothScroll, boolean always, int velocity) {
555 scrollToItem(item, smoothScroll, velocity, dispatchSelected);
561 private void scrollToItem(int position, boolean smoothScroll, int velocity,
566 smoothScrollTo(destX, 0, velocity);
787 * @param velocity the velocity associated with a fling, if applicable. (0 otherwise)
789 void smoothScrollTo(int x, int y, int velocity) {
816 velocity = Math.abs(velocity);
817 if (velocity > 0)
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
ViewDragHelper.java 185 * The fling velocity is also supplied, if relevant. The velocity values may
198 * @param xvel X velocity of the pointer as it left the screen in pixels per second.
199 * @param yvel Y velocity of the pointer as it left the screen in pixels per second.
395 * Set the minimum velocity that will be detected as having a magnitude greater than zero
396 * in pixels per second. Callback methods accepting a velocity will be clamped appropriately.
398 * @param minVel Minimum velocity to detect
405 * Return the currently configured minimum velocity. Any flings with a magnitude less
406 * than this value in pixels per second. Callback methods accepting a velocity will receive
407 * zero as a velocity value if the real detected velocity was below this threshold
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
KeyguardAffordanceView.java 205 public void finishAnimation(float velocity, final Runnable mAnimationEndRunnable) {
219 velocity, maxCircleSize);
235 velocity, maxCircleSize);
  /frameworks/support/v4/java/android/support/v4/view/
ViewPager.java 517 void setCurrentItemInternal(int item, boolean smoothScroll, boolean always, int velocity) {
553 scrollToItem(item, smoothScroll, velocity, dispatchSelected);
557 private void scrollToItem(int item, boolean smoothScroll, int velocity,
567 smoothScrollTo(destX, 0, velocity);
824 * @param velocity the velocity associated with a fling, if applicable. (0 otherwise)
826 void smoothScrollTo(int x, int y, int velocity) {
853 velocity = Math.abs(velocity);
854 if (velocity > 0)
    [all...]
  /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...]
  /packages/apps/FMRadio/src/com/android/fmradio/views/
FmScroller.java 440 final float velocity = getCurrentVelocity(); local
441 if (velocity > mMinimumVelocity || velocity < -mMinimumVelocity) {
442 fling(-velocity);
594 private void fling(float velocity) {
598 mScroller.fling(0, getScroll(), 0, (int) velocity, 0, 0, -Integer.MAX_VALUE,
677 * Interpolator that enforces a specific starting velocity.
    [all...]

Completed in 4441 milliseconds

1 23 4 5 6 7