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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
FlingAnimationUtils.java 132 float durationSeconds = LINEAR_OUT_SLOW_IN_START_GRADIENT * diff / velAbs;
133 if (durationSeconds <= maxLengthSeconds) {
138 durationSeconds = maxLengthSeconds;
140 = new VelocityInterpolator(durationSeconds, velAbs, diff);
147 durationSeconds = maxLengthSeconds;
150 mAnimatorProperties.duration = (long) (durationSeconds * 1000);
204 float durationSeconds = startGradient * diff / velAbs;
205 if (durationSeconds <= maxLengthSeconds) {
211 durationSeconds = maxLengthSeconds;
213 = new VelocityInterpolator(durationSeconds, velAbs, diff)
    [all...]
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 132 double durationSeconds = Long.parseLong(hours) * 3600;
134 durationSeconds += Long.parseLong(minutes) * 60;
136 durationSeconds += Long.parseLong(seconds);
138 durationSeconds += (fraction != null) ? Double.parseDouble(fraction) : 0;
140 durationSeconds += (frames != null) ? ((double)Long.parseLong(frames)) / frameRate : 0;
142 durationSeconds += (subframes != null) ? ((double)Long.parseLong(subframes))
145 return (long)(durationSeconds * 1000);
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java 491 long durationSeconds = (durationMillis / 1000);
492 if (start.allDay && (durationSeconds % 86400) == 0) {
493 return "P" + (durationSeconds / 86400) + "D"; // Server wants this instead of P86400S
495 return "P" + durationSeconds + "S";
  /frameworks/wilhelm/tools/permute/
permute.c 212 double durationSeconds = (double) sfinfo_in.frames / (double) sfinfo_in.samplerate;
217 s.mSegmentMax = durationSeconds / meanSegmentLengthSeconds;
  /frameworks/base/core/java/android/text/format/
Formatter.java 250 return context.getString(com.android.internal.R.string.durationSeconds, seconds);
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/blink/interpolation/resources/
interpolation-test.js 48 var durationSeconds = 0;
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 524 long durationSeconds = durationMillis / 1000;
528 if (isAllDay && (durationSeconds % 86400) == 0) {
529 return "P" + durationSeconds / 86400 + "D";
531 return "PT" + durationSeconds + "S";
    [all...]
  /developers/build/prebuilts/androidtv/sample-inputs/app/libs/
exoplayer_dev-hls_20150123.jar 
  /packages/apps/TV/usbtuner/libs/
exoplayer_1.5.6.jar 

Completed in 506 milliseconds