Searched defs:durationSeconds (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DFlingAnimationUtils.java138 float durationSeconds = LINEAR_OUT_SLOW_IN_START_GRADIENT * diff / velAbs;
139 if (durationSeconds <= maxLengthSeconds) {
144 durationSeconds = maxLengthSeconds;
146 = new VelocityInterpolator(durationSeconds, velAbs, diff);
153 durationSeconds = maxLengthSeconds;
156 mAnimatorProperties.duration = (long) (durationSeconds * 1000);
210 float durationSeconds = startGradient * diff / velAbs;
211 if (durationSeconds <= maxLengthSeconds) {
217 durationSeconds = maxLengthSeconds;
219 = new VelocityInterpolator(durationSeconds, velAb
287 VelocityInterpolator(float durationSeconds, float velocity, float diff) argument
[all...]
/frameworks/wilhelm/tools/permute/
H A Dpermute.c212 double durationSeconds = (double) sfinfo_in.frames / (double) sfinfo_in.samplerate; local
217 s.mSegmentMax = durationSeconds / meanSegmentLengthSeconds;

Completed in 609 milliseconds