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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DFlingAnimationUtils.java137 float durationSeconds = LINEAR_OUT_SLOW_IN_START_GRADIENT * diff / velAbs;
138 if (durationSeconds <= maxLengthSeconds) {
143 durationSeconds = maxLengthSeconds;
145 = new VelocityInterpolator(durationSeconds, velAbs, diff);
152 durationSeconds = maxLengthSeconds;
155 mAnimatorProperties.duration = (long) (durationSeconds * 1000);
209 float durationSeconds = startGradient * diff / velAbs;
210 if (durationSeconds <= maxLengthSeconds) {
216 durationSeconds = maxLengthSeconds;
218 = new VelocityInterpolator(durationSeconds, velAb
286 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 267 milliseconds